diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-01-15 23:38:03 +0100 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-01-15 23:38:03 +0100 |
commit | fcafd5a2e0f87fcc79e0a723241604aeca50d017 (patch) | |
tree | 97c3f06c4a7987cede55b61aaa59a56f3321920e /src/UI/SlotArea.cpp | |
parent | Implemented Ctrl-Q drop stack (diff) | |
download | cuberite-fcafd5a2e0f87fcc79e0a723241604aeca50d017.tar cuberite-fcafd5a2e0f87fcc79e0a723241604aeca50d017.tar.gz cuberite-fcafd5a2e0f87fcc79e0a723241604aeca50d017.tar.bz2 cuberite-fcafd5a2e0f87fcc79e0a723241604aeca50d017.tar.lz cuberite-fcafd5a2e0f87fcc79e0a723241604aeca50d017.tar.xz cuberite-fcafd5a2e0f87fcc79e0a723241604aeca50d017.tar.zst cuberite-fcafd5a2e0f87fcc79e0a723241604aeca50d017.zip |
Diffstat (limited to '')
-rw-r--r-- | src/UI/SlotArea.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/UI/SlotArea.cpp b/src/UI/SlotArea.cpp index a721e6b7e..df3687fda 100644 --- a/src/UI/SlotArea.cpp +++ b/src/UI/SlotArea.cpp @@ -89,6 +89,9 @@ void cSlotArea::Clicked(cPlayer & a_Player, int a_SlotNum, eClickAction a_ClickA Slot.m_ItemCount -= DraggingItem.m_ItemCount; DraggingItem.m_ItemType = Slot.m_ItemType; DraggingItem.m_ItemDamage = Slot.m_ItemDamage; + DraggingItem.m_Enchantments = Slot.m_Enchantments; + DraggingItem.m_CustomName = Slot.m_CustomName; + DraggingItem.m_Lore = Slot.m_Lore; if (Slot.m_ItemCount <= 0) { @@ -105,6 +108,10 @@ void cSlotArea::Clicked(cPlayer & a_Player, int a_SlotNum, eClickAction a_ClickA Slot.m_ItemCount++; Slot.m_ItemDamage = DraggingItem.m_ItemDamage; DraggingItem.m_ItemCount--; + + Slot.m_Enchantments = DraggingItem.m_Enchantments; + Slot.m_CustomName = DraggingItem.m_CustomName; + Slot.m_Lore = DraggingItem.m_Lore; } if (DraggingItem.m_ItemCount <= 0) { |