Core/PacketIO: Updated SMSG_QUEST_PUSH_RESPONSE to 9.1.5

Port From (https://github.com/TrinityCore/TrinityCore/commit/122fe7549db0e499560b748156592862623cb6b4)
This commit is contained in:
hondacrx
2021-11-07 17:02:09 -05:00
parent f6fd48e57f
commit c6dbd790c1
4 changed files with 188 additions and 68 deletions
@@ -704,10 +704,16 @@ namespace Game.Networking.Packets
{
_worldPacket.WritePackedGuid(SenderGUID);
_worldPacket.WriteUInt8((byte)Result);
_worldPacket.WriteBits(QuestTitle.GetByteCount(), 9);
_worldPacket.FlushBits();
_worldPacket.WriteString(QuestTitle);
}
public ObjectGuid SenderGUID;
public QuestPushReason Result;
public string QuestTitle;
}
class QuestPushResult : ClientPacket