From 4fde622e2d0c82ba448f1306311419aa8636cc8e Mon Sep 17 00:00:00 2001 From: Mat Date: Mon, 23 Mar 2020 16:12:54 +0200 Subject: Play sound when brewing is complete --- src/BlockEntities/BrewingstandEntity.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/BlockEntities/BrewingstandEntity.cpp b/src/BlockEntities/BrewingstandEntity.cpp index e4dd45989..158dd9278 100644 --- a/src/BlockEntities/BrewingstandEntity.cpp +++ b/src/BlockEntities/BrewingstandEntity.cpp @@ -140,6 +140,7 @@ bool cBrewingstandEntity::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) } // Brewing process completed + m_World->BroadcastSoundEffect("block.brewing_stand.brew", m_Pos, 1.0f, 1.0f); cPluginManager::Get()->CallHookBrewingCompleted(*m_World, *this); return true; } -- cgit v1.2.3