From ff41d1d4eed987c510fc018e9a759561b6cdf631 Mon Sep 17 00:00:00 2001 From: Adrienne Walker Date: Mon, 19 Jun 2023 22:26:42 -0700 Subject: [PATCH] raidboss: re-fix P11S lightstream safespot (#5589) 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. --- ui/raidboss/data/06-ew/raid/p11s.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/raidboss/data/06-ew/raid/p11s.ts b/ui/raidboss/data/06-ew/raid/p11s.ts index b758bb5351..89ba128b89 100644 --- a/ui/raidboss/data/06-ew/raid/p11s.ts +++ b/ui/raidboss/data/06-ew/raid/p11s.ts @@ -694,7 +694,7 @@ const triggerSet: TriggerSet = { 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.