File tree Expand file tree Collapse file tree
WowPacketParserModule.V3_4_0_45166/Parsers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1293,6 +1293,21 @@ public static void HandleLearnPvPTalentFailed(Packet packet)
12931293 }
12941294 }
12951295
1296+ [ Parser ( Opcode . SMSG_LOSS_OF_CONTROL_AURA_UPDATE , ClientVersionBuild . V3_4_4_59817 ) ]
1297+ public static void HandleLossOfControlAuraUpdate ( Packet packet )
1298+ {
1299+ packet . ReadPackedGuid128 ( "AffectedGUID" ) ;
1300+ var count = packet . ReadInt32 ( ) ;
1301+ for ( int i = 0 ; i < count ; i ++ )
1302+ {
1303+ packet . ReadUInt32 ( "Duration" , i ) ;
1304+ packet . ReadUInt16 ( "AuraSlot" , i ) ;
1305+ packet . ReadByte ( "EffectIndex" , i ) ;
1306+ packet . ReadByteE < LossOfControlType > ( "LocType" , i ) ;
1307+ packet . ReadByteE < SpellMechanic > ( "Mechanic" , i ) ;
1308+ }
1309+ }
1310+
12961311 [ Parser ( Opcode . SMSG_ON_CANCEL_EXPECTED_RIDE_VEHICLE_AURA , ClientVersionBuild . V3_4_4_59817 ) ]
12971312 [ Parser ( Opcode . CMSG_CANCEL_AUTO_REPEAT_SPELL , ClientVersionBuild . V3_4_4_59817 ) ]
12981313 [ Parser ( Opcode . CMSG_CANCEL_GROWTH_AURA , ClientVersionBuild . V3_4_4_59817 ) ]
You can’t perform that action at this time.
0 commit comments