summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLogicParrot <LogicParrot@users.noreply.github.com>2016-03-28 17:49:36 +0200
committerLogicParrot <LogicParrot@users.noreply.github.com>2016-03-28 17:49:36 +0200
commitf46b01bf2cfa3469c2da3b7466da370a07c8870e (patch)
treecae49431e59fffc44127b07c76ba29cdb6a1b3b1
parentMerge pull request #3093 from mathias-github/patch-2 (diff)
parentFix passive mob destruction crashes (diff)
downloadcuberite-f46b01bf2cfa3469c2da3b7466da370a07c8870e.tar
cuberite-f46b01bf2cfa3469c2da3b7466da370a07c8870e.tar.gz
cuberite-f46b01bf2cfa3469c2da3b7466da370a07c8870e.tar.bz2
cuberite-f46b01bf2cfa3469c2da3b7466da370a07c8870e.tar.lz
cuberite-f46b01bf2cfa3469c2da3b7466da370a07c8870e.tar.xz
cuberite-f46b01bf2cfa3469c2da3b7466da370a07c8870e.tar.zst
cuberite-f46b01bf2cfa3469c2da3b7466da370a07c8870e.zip
-rw-r--r--src/Mobs/PassiveMonster.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Mobs/PassiveMonster.cpp b/src/Mobs/PassiveMonster.cpp
index 000f3d5a4..071352532 100644
--- a/src/Mobs/PassiveMonster.cpp
+++ b/src/Mobs/PassiveMonster.cpp
@@ -71,6 +71,7 @@ void cPassiveMonster::Destroyed()
{
m_LovePartner->ResetLoveMode();
}
+ super::Destroyed();
}