diff options
-rw-r--r-- | source/BlockEntities/FurnaceEntity.cpp | 2 | ||||
-rw-r--r-- | source/BlockEntities/FurnaceEntity.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/source/BlockEntities/FurnaceEntity.cpp b/source/BlockEntities/FurnaceEntity.cpp index d90746c55..e1b6fc47b 100644 --- a/source/BlockEntities/FurnaceEntity.cpp +++ b/source/BlockEntities/FurnaceEntity.cpp @@ -91,6 +91,8 @@ void cFurnaceEntity::UsedBy(cPlayer * a_Player) if (a_Player->GetWindow() != Window) { a_Player->OpenWindow(Window); + BroadcastProgress(PROGRESSBAR_FUEL, m_LastProgressFuel); + BroadcastProgress(PROGRESSBAR_SMELTING, m_LastProgressCook); } } } diff --git a/source/BlockEntities/FurnaceEntity.h b/source/BlockEntities/FurnaceEntity.h index ed6a7588f..038f60600 100644 --- a/source/BlockEntities/FurnaceEntity.h +++ b/source/BlockEntities/FurnaceEntity.h @@ -126,6 +126,8 @@ protected: int m_LastProgressFuel; ///< Last value sent as the progress for the fuel int m_LastProgressCook; ///< Last value sent as the progress for the cooking + + /// Sends the specified progressbar value to all clients of the window void BroadcastProgress(int a_ProgressbarID, short a_Value); /// One item finished cooking |