diff options
author | megamage <none@none> | 2009-04-17 15:29:55 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-04-17 15:29:55 -0500 |
commit | f0cbed1ad8376200bb450768d7b77198e6754113 (patch) | |
tree | 55cc52add932df8ce9740824a09916deb2e95ba6 /src/game/QueryHandler.cpp | |
parent | ca5894b34800782b98ee9c47d82081cf0a0c1555 (diff) | |
parent | 6a53bada669c58393ec13c9bacd199c154fe023a (diff) |
*Merge.
--HG--
branch : trunk
Diffstat (limited to 'src/game/QueryHandler.cpp')
-rw-r--r-- | src/game/QueryHandler.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/game/QueryHandler.cpp b/src/game/QueryHandler.cpp index b27620e7857..2a4e08cf0d9 100644 --- a/src/game/QueryHandler.cpp +++ b/src/game/QueryHandler.cpp @@ -186,11 +186,10 @@ void WorldSession::HandleCreatureQueryOpcode( WorldPacket & recv_data ) data << uint32(ci->family); // family wdbFeild9 data << uint32(ci->rank); // rank wdbFeild10 data << uint32(ci->PetSpellDataId); // Id from CreatureSpellData.dbc wdbField12 - data << uint32(ci->Modelid1); // modelid_male1 - data << uint32(ci->Modelid2); // modelid_female1 ? - data << uint32(ci->Modelid3); // modelid_male2 ? - data << uint32(ci->Modelid4); // modelid_femmale2 ? - data << float(ci->unk16); // unk + data << (uint32)ci->Modelid_A1; // Modelid_A1 + data << (uint32)ci->Modelid_A2; // Modelid_A2 + data << (uint32)ci->Modelid_H1; // Modelid_H1 + data << (uint32)ci->Modelid_H2; // Modelid_H2 data << float(ci->unk17); // unk data << uint8(ci->RacialLeader); SendPacket( &data ); |