mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
- Some updates.
This commit is contained in:
parent
23bfcccd77
commit
2bdfb0d7bb
8 changed files with 68 additions and 75 deletions
|
|
@ -486,3 +486,12 @@ void WorldSession::HandleQueryQuestsCompleted( WorldPacket & recv_data )
|
|||
data.put<uint32>(0, count);
|
||||
SendPacket(&data);
|
||||
}
|
||||
|
||||
void WorldSession::HandleQuestPOIQuery(WorldPacket& recv_data)
|
||||
{
|
||||
recv_data.read_skip<uint64>();
|
||||
|
||||
WorldPacket data(SMSG_QUEST_POI_QUERY_RESPONSE, 4);
|
||||
data << uint32(0); // count
|
||||
SendPacket(&data);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue