Core/PacketIO: Fixed structure of SMSG_ITEM_PUSH_RESULT

This commit is contained in:
Shauren
2023-10-09 18:36:14 +02:00
parent 99220af493
commit ab2b5f6858
2 changed files with 2 additions and 0 deletions

View File

@@ -266,6 +266,7 @@ WorldPacket const* WorldPackets::Item::ItemPushResult::Write()
_worldPacket.WriteBit(Pushed);
_worldPacket.WriteBit(Created);
_worldPacket.WriteBit(Unused_1017);
_worldPacket.WriteBits(DisplayText, 3);
_worldPacket.WriteBit(IsBonusRoll);
_worldPacket.WriteBit(IsEncounterLoot);

View File

@@ -358,6 +358,7 @@ namespace WorldPackets
bool Pushed = false;
DisplayType DisplayText = DISPLAY_TYPE_HIDDEN;
bool Created = false;
bool Unused_1017 = false;
bool IsBonusRoll = false;
bool IsEncounterLoot = false;
};