Yet Another CELU Question

In reading through the gamepedia documentation (on gamepedia) for the COMBAT_LOG_EVENT_UNFILTERED (CELU), I’ve become confused. For example, the documentation for the _MISSED suffix specifies that when an attack (spell, swing, etc.,) is blocked, dodged, parried, or otherwise missed, the amount of damage missed is obtained from the value of the 17th parameter. Similarly, the documentation specifies the type of miss as the value of the 15th parameter. Neither of these seem to be correct. The miss type, for example, is not found in the 15th parameter, but in the 13th. The amount missed/blocked/dodged, etc., does not seem to be determined by the value of the 17th parameter. In fact, the 17th is almost always nil. I say “almost always” because I have not tested all cases - just the “BLOCK”, “DODGE”, “MISS”, and “PARRY” types.

As usual I may be missing something obvious and would appreciate any guidance.

Thanks, in advance

The amountMissed argument indeed doesn’t seem to exist anymore or might only return for specific situations

The miss type is found in the 12th or 15th parameter depending on if it’s a SWING or SPELL event, see these CLEU examples
https://imgur.com/a/hqsOHrP

-- SWING_MISSED
		self			<Frame>		
		event			"COMBAT_LOG_EVENT_UNFILTERED"		
1		timestamp		1572127040.696
2		subevent		"SWING_MISSED"
3		hideCaster		false
4		sourceGUID		"Creature-0-3769-0-3-94-000034C061"
5		sourceName		"Cutpurse"
6		sourceFlags		68168
7		sourceRaidFlags	0
8		destGUID		"Player-1598-0611966F"
9		destName		"Ketho"
10		destFlags		1297
11		destRaidFlags	0
12 (s1)	MissType		"MISS"
13 (s2)	isOffHand		false
-- SPELL_MISSED
		self			<Frame>
		event			"COMBAT_LOG_EVENT_UNFILTERED"
1		timestamp		1572128146.892
2		subevent		"SPELL_MISSED"
3		hideCaster		false
4		sourceGUID		"Creature-0-3769-0-26-1165-000034AB23"
5		sourceName		"Stonesplinter Geomancer"
6		sourceFlags		68168
7		sourceRaidFlags	0
8		destGUID		"Player-1598-0611966F"
9		destName		"Ketho"
10		destFlags		1297
11		destRaidFlags	0
12		spellId			79886
13		spellName		"Lava Burst"
14		spellSchool		4
15 (s1)	MissType		"MISS"
16 (s2)	isOffHand		false

Thank you, so much. So, if my understanding is correct (now), if a spell misses, the missType is in [15]. If a swing misses, the type is in [12]. I’ll give it a shot.

Thanks,