Skip to content

Commit

Permalink
raidboss: fix FRU P2 Icicle Impact (OverlayPlugin#539)
Browse files Browse the repository at this point in the history
Per discussion in discord. There's an intermittent issue with stale
position data on `StartsUsing` lines for Icicle Impact; this switches to
`StartsUsingExtra`, which resolves the issue.

I'd like to version bump again after this and OverlayPlugin#537 are merged, as this
is a bug fix.
  • Loading branch information
wexxlee authored Dec 8, 2024
1 parent 234ea9f commit 084f59e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/raidboss/data/07-dt/ultimate/futures_rewritten.ts
Original file line number Diff line number Diff line change
Expand Up @@ -402,14 +402,14 @@ const triggerSet: TriggerSet<Data> = {
},
{
id: 'FRU P2 Icicle Impact Initial Collect',
type: 'StartsUsing',
type: 'StartsUsingExtra',
netRegex: { id: '9D06' },
// there are 2 actors 180 degrees apart, but we only need to collect one
condition: (data) => data.p2IcicleImpactStart === 'unknown',
suppressSeconds: 1,
run: (data, matches) => {
const x = parseInt(matches.x);
const y = parseInt(matches.y);
const x = parseFloat(matches.x);
const y = parseFloat(matches.y);
const dir = Directions.xyTo8DirOutput(x, y, centerX, centerY);
data.p2IcicleImpactStart = dir;
},
Expand Down

0 comments on commit 084f59e

Please sign in to comment.