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
@@ -1265,13 +1265,13 @@ namespace Game.Networking.Packets
public override void Write()
{
_worldPacket.WriteUInt32(TotalTime);
_worldPacket.WriteUInt32(TimeLeft);
_worldPacket.WriteInt64(TotalTime);
_worldPacket.WriteInt64(TimeLeft);
_worldPacket.WriteInt32((int)Type);
}
public uint TotalTime;
public uint TimeLeft;
public long TotalTime;
public long TimeLeft;
public TimerType Type;
}