diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-06-20 13:46:08 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-06-20 13:46:08 +0200 |
commit | 0aba613084d3321208b78b0115e4dcadc4bc4763 (patch) | |
tree | 7e74b041454a9dbf080420ddf973a6bb3550fca0 | |
parent | Furnaces light up visually when they're cooking (diff) | |
download | cuberite-0aba613084d3321208b78b0115e4dcadc4bc4763.tar cuberite-0aba613084d3321208b78b0115e4dcadc4bc4763.tar.gz cuberite-0aba613084d3321208b78b0115e4dcadc4bc4763.tar.bz2 cuberite-0aba613084d3321208b78b0115e4dcadc4bc4763.tar.lz cuberite-0aba613084d3321208b78b0115e4dcadc4bc4763.tar.xz cuberite-0aba613084d3321208b78b0115e4dcadc4bc4763.tar.zst cuberite-0aba613084d3321208b78b0115e4dcadc4bc4763.zip |
-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 |