diff options
| author | megamage <none@none> | 2009-02-25 20:53:25 -0600 |
|---|---|---|
| committer | megamage <none@none> | 2009-02-25 20:53:25 -0600 |
| commit | 58d01932afdb4ffd6a4ae8a453f9e1c62f8db9e8 (patch) | |
| tree | ed359378b67271d21d05e7df0a49ae9cd79e6029 /src/game/GroupHandler.cpp | |
| parent | bf66375bc73c2b9dd7c2d26d7af25b111734c622 (diff) | |
| parent | dea0b1c5a69dad8f3645f2a4f6634f50fdb3ad08 (diff) | |
*Merge.
--HG--
branch : trunk
Diffstat (limited to 'src/game/GroupHandler.cpp')
| -rw-r--r-- | src/game/GroupHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/GroupHandler.cpp b/src/game/GroupHandler.cpp index a283a6baff5..f35c60aa81c 100644 --- a/src/game/GroupHandler.cpp +++ b/src/game/GroupHandler.cpp @@ -722,7 +722,7 @@ void WorldSession::BuildPartyMemberStatsChangedPacket(Player *player, WorldPacke { if(auramask & (uint64(1) << i)) { - uint32 updatedAura=player->GetUInt32Value(UNIT_FIELD_AURA + i); + uint32 updatedAura=player->GetUInt32Value(uint16(UNIT_FIELD_AURA + i)); *data << uint16(updatedAura); *data << uint8(1); //TODO: find a safe place to do this cleanup @@ -807,7 +807,7 @@ void WorldSession::BuildPartyMemberStatsChangedPacket(Player *player, WorldPacke { if(auramask & (uint64(1) << i)) { - uint32 updatedAura=pet->GetUInt32Value(UNIT_FIELD_AURA + i); + uint32 updatedAura=pet->GetUInt32Value(uint16(UNIT_FIELD_AURA + i)); *data << uint16(updatedAura); *data << uint8(1); //TODO: find a safe place to do this cleanup |
