diff --git a/Source/Game/Networking/Packets/BattleGroundPackets.cs b/Source/Game/Networking/Packets/BattleGroundPackets.cs index 961f44620..fe64a066f 100644 --- a/Source/Game/Networking/Packets/BattleGroundPackets.cs +++ b/Source/Game/Networking/Packets/BattleGroundPackets.cs @@ -532,7 +532,7 @@ namespace Game.Networking.Packets public override void Write() { - _worldPacket.WriteUInt8(Winner); + _worldPacket.WriteInt32(Winner); _worldPacket.WriteInt64(Duration); _worldPacket.WriteBit(LogData != null); _worldPacket.WriteBits(SoloShuffleStatus, 2); @@ -542,7 +542,7 @@ namespace Game.Networking.Packets LogData.Write(_worldPacket); } - public byte Winner; + public int Winner; public long Duration; public PVPMatchStatistics LogData; public uint SoloShuffleStatus;