diff options
author | wereii <8504482+wereii@users.noreply.github.com> | 2021-01-16 19:27:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-16 19:27:50 +0100 |
commit | bdb45998c966905a8a69a59912e6c8855cca48e0 (patch) | |
tree | 4d06107c98a96a0892db021af9fec0e957a45f34 /src/UI | |
parent | Clarify cClientHandle, cPlayer ownership semantics (diff) | |
download | cuberite-bdb45998c966905a8a69a59912e6c8855cca48e0.tar cuberite-bdb45998c966905a8a69a59912e6c8855cca48e0.tar.gz cuberite-bdb45998c966905a8a69a59912e6c8855cca48e0.tar.bz2 cuberite-bdb45998c966905a8a69a59912e6c8855cca48e0.tar.lz cuberite-bdb45998c966905a8a69a59912e6c8855cca48e0.tar.xz cuberite-bdb45998c966905a8a69a59912e6c8855cca48e0.tar.zst cuberite-bdb45998c966905a8a69a59912e6c8855cca48e0.zip |
Diffstat (limited to 'src/UI')
-rw-r--r-- | src/UI/SlotArea.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/UI/SlotArea.cpp b/src/UI/SlotArea.cpp index 98782800b..dbdebd320 100644 --- a/src/UI/SlotArea.cpp +++ b/src/UI/SlotArea.cpp @@ -2803,6 +2803,7 @@ void cSlotAreaHorse::Clicked(cPlayer & a_Player, int a_SlotNum, eClickAction a_C { return; } + break; } case ArmorSlot: { @@ -2810,9 +2811,11 @@ void cSlotAreaHorse::Clicked(cPlayer & a_Player, int a_SlotNum, eClickAction a_C { return; } + break; } default: break; } + } default: break; } |