diff options
author | silver1ce <none@none> | 2010-03-08 23:40:46 +0200 |
---|---|---|
committer | silver1ce <none@none> | 2010-03-08 23:40:46 +0200 |
commit | 3847e3be42fdebcf1ddf3a46a8daa05605c3d099 (patch) | |
tree | 9de9db7d7568117496120764cdde97c3a0f2c6ed | |
parent | 2cc15aee31e36d408114ab2d90efe05f92c8041f (diff) |
fix my typo in a4f4c51dca,
could not detect it earlier
Сloses #1029
--HG--
branch : trunk
-rw-r--r-- | src/game/Unit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index faaabf52a91..7312e96ddf5 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -321,14 +321,14 @@ void Unit::SendMonsterStop(bool on_death) if (on_death == true) { - data << uint8(1); + data << uint8(0); data << uint32((GetUnitMovementFlags() & MOVEMENTFLAG_LEVITATING) ? MOVEFLAG_FLY : MOVEFLAG_WALK); data << uint32(0); // Time in between points data << uint32(1); // 1 single waypoint data << GetPositionX() << GetPositionY() << GetPositionZ(); } else - data << uint8(0); + data << uint8(1); SendMessageToSet(&data, true); |