diff options
author | Lukas Pioch <lukas@zgow.de> | 2015-12-17 11:37:20 +0100 |
---|---|---|
committer | Lukas Pioch <lukas@zgow.de> | 2015-12-17 11:37:20 +0100 |
commit | 1395ff3ca4baf554f8b47a73ebd7bbf7635f59cb (patch) | |
tree | d589a1e5fb4813e100fd377bae9378c37a619370 /src/BlockEntities | |
parent | Merge pull request #2753 from cuberite/pathFix (diff) | |
parent | Moved variables into scope, removed unused variables and fixed variables (diff) | |
download | cuberite-1395ff3ca4baf554f8b47a73ebd7bbf7635f59cb.tar cuberite-1395ff3ca4baf554f8b47a73ebd7bbf7635f59cb.tar.gz cuberite-1395ff3ca4baf554f8b47a73ebd7bbf7635f59cb.tar.bz2 cuberite-1395ff3ca4baf554f8b47a73ebd7bbf7635f59cb.tar.lz cuberite-1395ff3ca4baf554f8b47a73ebd7bbf7635f59cb.tar.xz cuberite-1395ff3ca4baf554f8b47a73ebd7bbf7635f59cb.tar.zst cuberite-1395ff3ca4baf554f8b47a73ebd7bbf7635f59cb.zip |
Diffstat (limited to 'src/BlockEntities')
-rw-r--r-- | src/BlockEntities/BrewingstandEntity.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/BlockEntities/BrewingstandEntity.cpp b/src/BlockEntities/BrewingstandEntity.cpp index 3c42bee0e..f202ab419 100644 --- a/src/BlockEntities/BrewingstandEntity.cpp +++ b/src/BlockEntities/BrewingstandEntity.cpp @@ -92,10 +92,10 @@ bool cBrewingstandEntity::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) return false; } - const cBrewingRecipes::cRecipe * Recipe = nullptr; // The necessary brewing time, has been reached if (m_TimeBrewed >= m_NeedBrewingTime) { + const cBrewingRecipes::cRecipe * Recipe = nullptr; BroadcastProgress(0, 0); m_IsBrewing = false; m_TimeBrewed = 0; |