diff options
author | Mike Hunsinger <mike.hunsinger@gmail.com> | 2014-01-23 08:27:39 +0100 |
---|---|---|
committer | Mike Hunsinger <mike.hunsinger@gmail.com> | 2014-01-23 08:27:39 +0100 |
commit | 41b05416c75b9cbe31406f04b58b5da9892872f8 (patch) | |
tree | 0c592551b36871ae695f3bc5396fc92e5701f6b8 /src/ClientHandle.cpp | |
parent | Fix a crash but somewhere... (diff) | |
download | cuberite-41b05416c75b9cbe31406f04b58b5da9892872f8.tar cuberite-41b05416c75b9cbe31406f04b58b5da9892872f8.tar.gz cuberite-41b05416c75b9cbe31406f04b58b5da9892872f8.tar.bz2 cuberite-41b05416c75b9cbe31406f04b58b5da9892872f8.tar.lz cuberite-41b05416c75b9cbe31406f04b58b5da9892872f8.tar.xz cuberite-41b05416c75b9cbe31406f04b58b5da9892872f8.tar.zst cuberite-41b05416c75b9cbe31406f04b58b5da9892872f8.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ClientHandle.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp index 74d192129..ab3c85ba9 100644 --- a/src/ClientHandle.cpp +++ b/src/ClientHandle.cpp @@ -658,7 +658,8 @@ void cClientHandle::HandleLeftClick(int a_BlockX, int a_BlockY, int a_BlockZ, ch // A plugin doesn't agree with the tossing. The plugin itself is responsible for handling the consequences (possible inventory mismatch) return; } - m_Player->TossItem(false); + + m_Player->TossEquippedItem(); return; } @@ -713,7 +714,7 @@ void cClientHandle::HandleLeftClick(int a_BlockX, int a_BlockY, int a_BlockZ, ch // A plugin doesn't agree with the tossing. The plugin itself is responsible for handling the consequences (possible inventory mismatch) return; } - m_Player->TossItem(false, 64); // Toss entire slot - if there aren't enough items, the maximum will be ejected + m_Player->TossEquippedItem(64); // Toss entire slot - if there aren't enough items, the maximum will be ejected return; } |