Core/PacketIO: Add missing bit to SMSG_QUEST_GIVER_QUEST_DETAILS

Port From (https://github.com/TrinityCore/TrinityCore/commit/2c9d1f9e5c8fd2b327b07dcddbc30c5ced06564a)
This commit is contained in:
Hondacrx
2024-11-10 13:22:50 -05:00
parent 23e835058e
commit 6c8387f9ec
2 changed files with 3 additions and 0 deletions
@@ -490,6 +490,7 @@ namespace Game.Networking.Packets
_worldPacket.WriteBit(AutoLaunched);
_worldPacket.WriteBit(FromContentPush);
_worldPacket.WriteBit(false); // unused in client
_worldPacket.WriteBit(ResetByScheduler);
_worldPacket.WriteBit(StartCheat);
_worldPacket.WriteBit(DisplayPopup);
_worldPacket.FlushBits();
@@ -538,6 +539,7 @@ namespace Game.Networking.Packets
public bool StartCheat;
public bool AutoLaunched;
public bool FromContentPush;
public bool ResetByScheduler;
}
public class QuestGiverRequestItems : ServerPacket