diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-07-20 01:22:58 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-07-20 01:22:58 +0200 |
commit | 897d68dc35620f0e6c33fe4a6083a76ab43a9a57 (patch) | |
tree | b301f4317e3fb9fff1ea1300bf5b5bd899358a6b /src/UI/SlotArea.cpp | |
parent | Moved comment. (diff) | |
download | cuberite-897d68dc35620f0e6c33fe4a6083a76ab43a9a57.tar cuberite-897d68dc35620f0e6c33fe4a6083a76ab43a9a57.tar.gz cuberite-897d68dc35620f0e6c33fe4a6083a76ab43a9a57.tar.bz2 cuberite-897d68dc35620f0e6c33fe4a6083a76ab43a9a57.tar.lz cuberite-897d68dc35620f0e6c33fe4a6083a76ab43a9a57.tar.xz cuberite-897d68dc35620f0e6c33fe4a6083a76ab43a9a57.tar.zst cuberite-897d68dc35620f0e6c33fe4a6083a76ab43a9a57.zip |
Diffstat (limited to '')
-rw-r--r-- | src/UI/SlotArea.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/UI/SlotArea.cpp b/src/UI/SlotArea.cpp index 6f4f65ca3..e9b1ef8e0 100644 --- a/src/UI/SlotArea.cpp +++ b/src/UI/SlotArea.cpp @@ -1926,7 +1926,7 @@ void cSlotAreaArmor::Clicked(cPlayer & a_Player, int a_SlotNum, eClickAction a_C return; } - if (DraggingItem.IsEmpty() || CanPlaceInSlot(a_SlotNum, DraggingItem)) + if (DraggingItem.IsEmpty() || CanPlaceArmorInSlot(a_SlotNum, DraggingItem)) { // Swap contents cItem tmp(DraggingItem); @@ -1945,7 +1945,7 @@ void cSlotAreaArmor::Clicked(cPlayer & a_Player, int a_SlotNum, eClickAction a_C -bool cSlotAreaArmor::CanPlaceInSlot(int a_SlotNum, const cItem & a_Item) +bool cSlotAreaArmor::CanPlaceArmorInSlot(int a_SlotNum, const cItem & a_Item) { switch (a_SlotNum) { |