Skip to content

Commit efe5bb3

Browse files
committed
Fix 2 version errors on 1.15.8 updatehandler
1 parent 8ca44c3 commit efe5bb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

WowPacketParserModule.V5_5_0_61735/Parser/UpdateHandler1158.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace WowPacketParserModule.V5_5_0_61735.Parsers
1919
{
2020
public static class UpdateHandler1158
2121
{
22-
[Parser(Opcode.SMSG_MAP_OBJ_EVENTS)]
22+
[Parser(Opcode.SMSG_MAP_OBJ_EVENTS, ClientBranch.Classic)]
2323
public static void HandleMapObjEvents(Packet packet)
2424
{
2525
packet.ReadInt32("UniqueID");
@@ -33,7 +33,7 @@ public static void HandleMapObjEvents(Packet packet)
3333
}
3434
}
3535

36-
[Parser(Opcode.SMSG_DESTROY_ARENA_UNIT)]
36+
[Parser(Opcode.SMSG_DESTROY_ARENA_UNIT, ClientBranch.Classic)]
3737
public static void HandleDestroyArenaUnit(Packet packet)
3838
{
3939
packet.ReadPackedGuid128("Guid");

0 commit comments

Comments
 (0)