aboutsummaryrefslogtreecommitdiff
path: root/src/game/QueryHandler.cpp
diff options
context:
space:
mode:
authormegamage <none@none>2009-06-15 18:02:12 -0500
committermegamage <none@none>2009-06-15 18:02:12 -0500
commit572a9191d970b9b960555c8a5d31efd3160a8b44 (patch)
tree69909d6d37af3164da06a919dd429bef4242bb0c /src/game/QueryHandler.cpp
parentb7d218febc3d65afce761ff7f5b32f9bc98e581c (diff)
*Some creature display id update. By VladimirMangos and GriffonHeart
--HG-- branch : trunk
Diffstat (limited to 'src/game/QueryHandler.cpp')
-rw-r--r--src/game/QueryHandler.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/QueryHandler.cpp b/src/game/QueryHandler.cpp
index 1ed9fd77db3..e07941d57ca 100644
--- a/src/game/QueryHandler.cpp
+++ b/src/game/QueryHandler.cpp
@@ -189,10 +189,10 @@ void WorldSession::HandleCreatureQueryOpcode( WorldPacket & recv_data )
data << uint32(ci->rank); // Creature Rank (elite, boss, etc)
data << uint32(ci->unk1); // new in 3.1, creature entry?
data << uint32(ci->unk2); // new in 3.1, creature entry?
- data << (uint32)ci->DisplayID_A; // DisplayID_A
- data << (uint32)ci->DisplayID_A2; // DisplayID_A2
- data << (uint32)ci->DisplayID_H; // DisplayID_H
- data << (uint32)ci->DisplayID_H2; // DisplayID_H2
+ data << uint32(ci->DisplayID_A[0]); // modelid_male1
+ data << uint32(ci->DisplayID_H[0]); // modelid_female1 ?
+ data << uint32(ci->DisplayID_A[1]); // modelid_male2 ?
+ data << uint32(ci->DisplayID_H[1]); // modelid_femmale2 ?
data << float(ci->unk16); // unk
data << float(ci->unk17); // unk
data << uint8(ci->RacialLeader);