We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35e90d3 commit 32f1213Copy full SHA for 32f1213
WowPacketParserModule.V4_4_0_54481/Parsers/MiscellaneousHandler.cs
@@ -1178,7 +1178,11 @@ public static void HandleSpecialMountAnim(Packet packet)
1178
[Parser(Opcode.SMSG_START_MIRROR_TIMER)]
1179
public static void HandleStartMirrorTimer(Packet packet)
1180
{
1181
- packet.ReadInt32E<MirrorTimerType>("Timer");
+ if (ClientVersion.AddedInVersion(ClientVersionBuild.V4_4_2_59185))
1182
+ packet.ReadByteE<MirrorTimerType>("Timer");
1183
+ else
1184
+ packet.ReadInt32E<MirrorTimerType>("Timer");
1185
+
1186
packet.ReadInt32("Value");
1187
packet.ReadInt32("MaxValue");
1188
packet.ReadInt32("Scale");
0 commit comments