Core/PacketIO: Fix some inconsistencies with TC (#61)

Co-authored-by: RioMcBoo <artem.jkl@gmail.com>
This commit is contained in:
RioMcBoo
2024-01-30 17:56:14 +02:00
committed by GitHub
parent 2c739a330d
commit 3006212c5a
5 changed files with 18 additions and 18 deletions
@@ -489,7 +489,7 @@ namespace Game.Networking.Packets
{
public ulong? TotalPrice;
public uint? Quantity;
public int? QuoteDuration;
public long? QuoteDuration;
public int ItemID;
public uint DesiredDelay;
@@ -510,7 +510,7 @@ namespace Game.Networking.Packets
_worldPacket.WriteUInt32(Quantity.Value);
if (QuoteDuration.HasValue)
_worldPacket.WriteInt32(QuoteDuration.Value);
_worldPacket.WriteInt64(QuoteDuration.Value);
}
}