diff options
author | megamage <none@none> | 2009-03-05 18:58:58 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-05 18:58:58 -0600 |
commit | b7363a72fe1ea9372fbe45e9b4d1b6b2c6710f62 (patch) | |
tree | a3a88b4c125af7f26d6602397a58d72f3456f627 /src/game/QueryHandler.cpp | |
parent | bb75a8a21ad3224f95d8710b8b06c4494dd2091d (diff) |
[7382] Add 2 unknown field to `creature_template` sent in SMSG_CREATURE_QUERY_RESPONSE to client Author: NoFantasy
--HG--
branch : trunk
Diffstat (limited to 'src/game/QueryHandler.cpp')
-rw-r--r-- | src/game/QueryHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/QueryHandler.cpp b/src/game/QueryHandler.cpp index eefecbce078..ac126a4514e 100644 --- a/src/game/QueryHandler.cpp +++ b/src/game/QueryHandler.cpp @@ -191,8 +191,8 @@ void WorldSession::HandleCreatureQueryOpcode( WorldPacket & recv_data ) data << (uint32)ci->Modelid2; // Modelid2 data << (uint32)ci->Modelid3; // Modelid3 data << (uint32)ci->Modelid4; // Modelid4 - data << (float)1.0f; // unk - data << (float)1.0f; // unk + data << (float)ci->unk16; // unk + data << (float)ci->unk17; // unk data << (uint8)ci->RacialLeader; SendPacket( &data ); sLog.outDebug( "WORLD: Sent SMSG_CREATURE_QUERY_RESPONSE " ); |