Skip to content

Commit

Permalink
raidboss: re-fix P11S lightstream safespot (#5589)
Browse files Browse the repository at this point in the history
Fixes a bug from #5585, which itself was fixing #5584.

I don't know why I thought this worked in the emulator. Sorry for the
hassle.

Fixes #5588.
  • Loading branch information
quisquous authored Jun 20, 2023
1 parent ba93f6e commit ff41d1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/raidboss/data/06-ew/raid/p11s.ts
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ const triggerSet: TriggerSet<Data> = {
const sortedCylinders = data.cylinderCollect.sort((a, b) => {
return a.targetId.localeCompare(b.targetId);
});
const markers = sortedCylinders.map((x) => x.id);
const markers = sortedCylinders.map((m) => getHeadmarkerId(data, m));

// Once sorted by id, the lasers will always be in NW, S, NE order.
// Create a 3 digit binary value, Orange = 0, Blue = 1.
Expand Down

0 comments on commit ff41d1d

Please sign in to comment.