diff options
author | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-03-28 17:49:36 +0200 |
---|---|---|
committer | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-03-28 17:49:36 +0200 |
commit | f46b01bf2cfa3469c2da3b7466da370a07c8870e (patch) | |
tree | cae49431e59fffc44127b07c76ba29cdb6a1b3b1 /src/Mobs | |
parent | Merge pull request #3093 from mathias-github/patch-2 (diff) | |
parent | Fix passive mob destruction crashes (diff) | |
download | cuberite-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 |
Diffstat (limited to 'src/Mobs')
-rw-r--r-- | src/Mobs/PassiveMonster.cpp | 1 |
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(); } |