Skip to content

Commit

Permalink
Fix broken flare cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
JLGarber committed Nov 18, 2024
1 parent 9abc0dc commit e06dec9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion ui/raidboss/data/04-sb/trial/byakko-ex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ const triggerSet: TriggerSet<Data> = {
condition: (data) => data.flareMarker !== data.me,
delaySeconds: 0.1,
response: Responses.getUnder(),
run: (data) => delete data.flareMarker,
},
{
id: 'ByakkoEx State Of Shock Tank 1',
Expand Down Expand Up @@ -182,6 +181,12 @@ const triggerSet: TriggerSet<Data> = {
response: Responses.awayFrom(),
run: (data, matches) => data.flareMarker = matches.target,
},
{
id: 'ByakkoEx White Herald Cleanup', // Tank flare marker
type: 'Ability',
netRegex: { id: '9C1A', source: 'Hakutei', capture: false },
run: (data) => delete data.flareMarker,
},
// https://xivapi.com/InstanceContentTextData/18606
// en: Twofold is my wrath, twice-cursed my foes!
{
Expand Down
7 changes: 6 additions & 1 deletion ui/raidboss/data/07-dt/trial/byakko-un.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ const triggerSet: TriggerSet<Data> = {
condition: (data) => data.flareMarker !== data.me,
delaySeconds: 0.1,
response: Responses.getUnder(),
run: (data) => delete data.flareMarker,
},
{
id: 'ByakkoUn State Of Shock Tank 1',
Expand Down Expand Up @@ -187,6 +186,12 @@ const triggerSet: TriggerSet<Data> = {
response: Responses.awayFrom(),
run: (data, matches) => data.flareMarker = matches.target,
},
{
id: 'ByakkoUn White Herald Cleanup', // Tank flare marker
type: 'Ability',
netRegex: { id: '9C1A', source: 'Hakutei', capture: false },
run: (data) => delete data.flareMarker,
},
// https://xivapi.com/InstanceContentTextData/18606
// en: Twofold is my wrath, twice-cursed my foes!
{
Expand Down

0 comments on commit e06dec9

Please sign in to comment.