Skip to content

Commit aa4d7e3

Browse files
committed
Add 3.4.4 SMSG_AURA_POINTS_DEPLETED
1 parent 3b49749 commit aa4d7e3

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

WowPacketParserModule.V3_4_0_45166/Parsers/SpellHandler.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1270,6 +1270,15 @@ public static void HandleUpdateMissileTrajectory(Packet packet)
12701270
Substructures.MovementHandler.ReadMovementStats(packet, "Status");
12711271
}
12721272

1273+
[Parser(Opcode.SMSG_AURA_POINTS_DEPLETED, ClientVersionBuild.V3_4_4_59817)]
1274+
public static void HandleAuraPointsDepleted(Packet packet)
1275+
{
1276+
packet.ReadPackedGuid128("Unit");
1277+
packet.ReadUInt16("Slot");
1278+
1279+
packet.ReadByte("EffectIndex");
1280+
}
1281+
12731282
[Parser(Opcode.SMSG_ON_CANCEL_EXPECTED_RIDE_VEHICLE_AURA, ClientVersionBuild.V3_4_4_59817)]
12741283
[Parser(Opcode.CMSG_CANCEL_AUTO_REPEAT_SPELL, ClientVersionBuild.V3_4_4_59817)]
12751284
[Parser(Opcode.CMSG_CANCEL_GROWTH_AURA, ClientVersionBuild.V3_4_4_59817)]

0 commit comments

Comments
 (0)