diff options
author | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-02-07 18:07:14 +0100 |
---|---|---|
committer | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-02-19 06:05:22 +0100 |
commit | 83459d0d899786378e8304c92a5b79ddca92c62f (patch) | |
tree | 637e5302c5c5affc5f3c52d4c195cba5607aac30 /src/Inventory.cpp | |
parent | Merge pull request #3020 from cuberite/ice_block (diff) | |
download | cuberite-83459d0d899786378e8304c92a5b79ddca92c62f.tar cuberite-83459d0d899786378e8304c92a5b79ddca92c62f.tar.gz cuberite-83459d0d899786378e8304c92a5b79ddca92c62f.tar.bz2 cuberite-83459d0d899786378e8304c92a5b79ddca92c62f.tar.lz cuberite-83459d0d899786378e8304c92a5b79ddca92c62f.tar.xz cuberite-83459d0d899786378e8304c92a5b79ddca92c62f.tar.zst cuberite-83459d0d899786378e8304c92a5b79ddca92c62f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Inventory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Inventory.cpp b/src/Inventory.cpp index 35f087d79..5add53a12 100644 --- a/src/Inventory.cpp +++ b/src/Inventory.cpp @@ -713,7 +713,7 @@ void cInventory::OnSlotChanged(cItemGrid * a_ItemGrid, int a_SlotNum) { // Send the neccessary updates to whoever needs them - if (m_Owner.IsDestroyed()) + if (!m_Owner.IsTicking()) { // Owner is not (yet) valid, skip for now return; |