diff options
author | bibo38 <bibo38@users.noreply.github.com> | 2017-12-21 12:36:58 +0100 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2017-12-21 12:36:58 +0100 |
commit | 532731e6f4c0d843d355ff8f2d9f63e4e7854e6a (patch) | |
tree | 68c7c70e33fde99b21de53e1b3c7b86c6872c8b5 /src/FurnaceRecipe.cpp | |
parent | Added Github-related rules to Contributing.md (#4076) (diff) | |
download | cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar.gz cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar.bz2 cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar.lz cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar.xz cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar.zst cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.zip |
Diffstat (limited to 'src/FurnaceRecipe.cpp')
-rw-r--r-- | src/FurnaceRecipe.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FurnaceRecipe.cpp b/src/FurnaceRecipe.cpp index d7e69b181..4e7f13e6a 100644 --- a/src/FurnaceRecipe.cpp +++ b/src/FurnaceRecipe.cpp @@ -272,7 +272,7 @@ void cFurnaceRecipe::ClearRecipes(void) const cFurnaceRecipe::cRecipe * cFurnaceRecipe::GetRecipeFrom(const cItem & a_Ingredient) const { - const cRecipe * BestRecipe = 0; + const cRecipe * BestRecipe = nullptr; for (RecipeList::const_iterator itr = m_pState->Recipes.begin(); itr != m_pState->Recipes.end(); ++itr) { const cRecipe & Recipe = *itr; |