diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-12-13 18:49:11 +0100 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-12-13 18:49:11 +0100 |
commit | 8591935a4b48c24a16e8c103d474ee6803ce56a0 (patch) | |
tree | fe64a235a09dc353aa774854f0ea07bdfc99650f /src/UI/EnchantingWindow.h | |
parent | Own classes for all windows. (diff) | |
download | cuberite-8591935a4b48c24a16e8c103d474ee6803ce56a0.tar cuberite-8591935a4b48c24a16e8c103d474ee6803ce56a0.tar.gz cuberite-8591935a4b48c24a16e8c103d474ee6803ce56a0.tar.bz2 cuberite-8591935a4b48c24a16e8c103d474ee6803ce56a0.tar.lz cuberite-8591935a4b48c24a16e8c103d474ee6803ce56a0.tar.xz cuberite-8591935a4b48c24a16e8c103d474ee6803ce56a0.tar.zst cuberite-8591935a4b48c24a16e8c103d474ee6803ce56a0.zip |
Diffstat (limited to '')
-rw-r--r-- | src/UI/EnchantingWindow.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/UI/EnchantingWindow.h b/src/UI/EnchantingWindow.h index 9e42c1f4f..a6386ffe2 100644 --- a/src/UI/EnchantingWindow.h +++ b/src/UI/EnchantingWindow.h @@ -70,6 +70,25 @@ public: return m_PropertyValue[a_Property]; } + virtual void DistributeStack(cItem & a_ItemStack, int a_Slot, cPlayer & a_Player, cSlotArea * a_ClickedArea, bool a_ShouldApply) override + { + cSlotAreas AreasInOrder; + + if (a_ClickedArea == m_SlotAreas[0]) + { + // Enchanting Area + AreasInOrder.push_back(m_SlotAreas[2]); /* Hotbar */ + AreasInOrder.push_back(m_SlotAreas[1]); /* Inventory */ + super::DistributeStack(a_ItemStack, a_Player, AreasInOrder, a_ShouldApply, true); + } + else + { + // Inventory or Hotbar + AreasInOrder.push_back(m_SlotAreas[0]); /* Enchanting */ + super::DistributeStack(a_ItemStack, a_Player, AreasInOrder, a_ShouldApply, false); + } + } + cSlotArea * m_SlotArea; protected: |