summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwereii <8504482+wereii@users.noreply.github.com>2021-01-16 19:27:50 +0100
committerGitHub <noreply@github.com>2021-01-16 19:27:50 +0100
commitbdb45998c966905a8a69a59912e6c8855cca48e0 (patch)
tree4d06107c98a96a0892db021af9fec0e957a45f34
parentClarify cClientHandle, cPlayer ownership semantics (diff)
downloadcuberite-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
-rw-r--r--src/UI/SlotArea.cpp3
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;
}