diff options
author | megamage <none@none> | 2009-06-01 12:17:16 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-06-01 12:17:16 -0500 |
commit | 645bb23c45c20455226090bb5e84e9eae2376cf7 (patch) | |
tree | 86944ab8b325fc2ecdf67652ee51d8fecc370db7 | |
parent | 11456447da10a3c96d74696a9bd003caebde9f7f (diff) |
*Fix broken pet action bar of guardians.
--HG--
branch : trunk
-rw-r--r-- | src/game/Player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Player.cpp b/src/game/Player.cpp index 83c4555361f..3d86d52919f 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -16946,7 +16946,7 @@ void Player::CharmSpellInitialize() data << uint32(0); if(charm->GetTypeId() != TYPEID_PLAYER) - data << uint8(((Creature*)charm)->GetReactState()) << uint8(charmInfo->GetCommandState()); + data << uint8(((Creature*)charm)->GetReactState()) << uint8(charmInfo->GetCommandState()) << uint16(0); else data << uint8(0) << uint8(0) << uint16(0); |