diff options
Diffstat (limited to 'src/game/Creature.cpp')
-rw-r--r-- | src/game/Creature.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/game/Creature.cpp b/src/game/Creature.cpp index 4e6891ba5b9..4b31668db62 100644 --- a/src/game/Creature.cpp +++ b/src/game/Creature.cpp @@ -1484,14 +1484,6 @@ void Creature::setDeathState(DeathState s) if(m_formation && m_formation->getLeader() == this) m_formation->FormationReset(true); - SetHealth(0); - SetPower(getPowerType(),0); - - // For some reason movement packet is always to be issued on death - // send if not going to fall down - if (!canFly() && !IsFlying()) - SendMonsterMove(GetPositionX(), GetPositionY(), GetPositionZ(), 0); - if ((canFly() || IsFlying()) && FallGround()) return; |