Skip to content

Commit 9dffa16

Browse files
committed
Fixed sign of ServerTime for SMSG_BATTLEGROUND_INIT
1 parent 0c39d36 commit 9dffa16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WowPacketParserModule.V7_0_3_22248/Parsers/BattlegroundHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ public static void HandleArenaCrowdControlSpellResult(Packet packet)
302302
[Parser(Opcode.SMSG_BATTLEGROUND_INIT)]
303303
public static void HandleBattlegroundInit(Packet packet)
304304
{
305-
packet.ReadInt32("ServerTime");
305+
packet.ReadUInt32("ServerTime");
306306
packet.ReadInt16("MaxPoints");
307307
}
308308
}

0 commit comments

Comments
 (0)