diff options
author | Lukas Pioch <lukas@zgow.de> | 2017-05-05 11:58:21 +0200 |
---|---|---|
committer | Lukas Pioch <lukas@zgow.de> | 2017-05-08 06:30:54 +0200 |
commit | 41bfb22834f0cd13166914b35d4616f21f3c99df (patch) | |
tree | edb3ed8e3ef8b0258d4522a2f3202cc9aa09521d /src/UI/BrewingstandWindow.cpp | |
parent | Adjusted RipeMeta for off by one error (#3691) (diff) | |
download | cuberite-41bfb22834f0cd13166914b35d4616f21f3c99df.tar cuberite-41bfb22834f0cd13166914b35d4616f21f3c99df.tar.gz cuberite-41bfb22834f0cd13166914b35d4616f21f3c99df.tar.bz2 cuberite-41bfb22834f0cd13166914b35d4616f21f3c99df.tar.lz cuberite-41bfb22834f0cd13166914b35d4616f21f3c99df.tar.xz cuberite-41bfb22834f0cd13166914b35d4616f21f3c99df.tar.zst cuberite-41bfb22834f0cd13166914b35d4616f21f3c99df.zip |
Diffstat (limited to 'src/UI/BrewingstandWindow.cpp')
-rw-r--r-- | src/UI/BrewingstandWindow.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/UI/BrewingstandWindow.cpp b/src/UI/BrewingstandWindow.cpp index 2f1f3c97d..11a5990f2 100644 --- a/src/UI/BrewingstandWindow.cpp +++ b/src/UI/BrewingstandWindow.cpp @@ -31,17 +31,15 @@ void cBrewingstandWindow::DistributeStack(cItem & a_ItemStack, int a_Slot, cPlay if (a_ClickedArea == m_SlotAreas[0]) { - // Brewing stand Area - if ((a_Slot >= 0) && (a_Slot < 3)) + if ((a_Slot >= 0) && (a_Slot <= 4)) { - // Bottle slots + // Brewing stand Area AreasInOrder.push_back(m_SlotAreas[2]); /* Hotbar */ AreasInOrder.push_back(m_SlotAreas[1]); /* Inventory */ super::DistributeStackToAreas(a_ItemStack, a_Player, AreasInOrder, a_ShouldApply, true); } else { - // Ingredient slot AreasInOrder.push_back(m_SlotAreas[1]); /* Inventory */ AreasInOrder.push_back(m_SlotAreas[2]); /* Hotbar */ super::DistributeStackToAreas(a_ItemStack, a_Player, AreasInOrder, a_ShouldApply, false); @@ -50,7 +48,7 @@ void cBrewingstandWindow::DistributeStack(cItem & a_ItemStack, int a_Slot, cPlay else { cBrewingRecipes * BR = cRoot::Get()->GetBrewingRecipes(); - if ((BR->IsBottle(a_ItemStack)) || (BR->IsIngredient(a_ItemStack))) + if ((BR->IsBottle(a_ItemStack)) || (BR->IsIngredient(a_ItemStack)) || BR->IsFuel(a_ItemStack)) { AreasInOrder.push_back(m_SlotAreas[0]); /* brewing stand Area */ } |