Skip to content

Commit 4cadb9d

Browse files
authored
raidboss: fix Meso Terminal cleanse doom trigger (#996)
The cleanse doom trigger for the Meso Terminal dungeon uses the 11F2 effect ID. This appears to no longer be the ID used for the dungeon (as of Patch 7.4), as it now comes in the log as 1441. Based on log data from FFLogs, it appears that the ID changed in Patch 7.4 Update the effectId for Death Penalty to support the new ID. To avoid issues with parsing legacy log files (for example, in the simulator), keep the old ID as well. Fixes #995
1 parent f409ddc commit 4cadb9d

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

ui/raidboss/data/07-dt/dungeon/meso-terminal.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,10 @@ const triggerSet: TriggerSet<Data> = {
251251
{
252252
id: 'Meso Terminal Executioners Death Penalty',
253253
type: 'GainsEffect',
254-
netRegex: { effectId: '11F2', capture: true },
254+
// The Doom effect ID applied changed from 11F2 in 7.3 to 1441 in 7.4
255+
// Both IDs are kept to enable parsing older logs and for regions not
256+
// yet on Patch 7.4
257+
netRegex: { effectId: ['11F2', '1441'], capture: true },
255258
condition: (data) => data.CanCleanse(),
256259
alarmText: (_data, matches, output) => output.cleanseDoom!({ target: matches.target }),
257260
outputStrings: {

0 commit comments

Comments
 (0)