From 33ae1fe2b60a046829e53781c1eabcdb3148f1b3 Mon Sep 17 00:00:00 2001 From: Legends0 Date: Tue, 27 Jan 2026 00:03:03 -0500 Subject: [PATCH] replace Math.abs --- ui/raidboss/data/07-dt/raid/r8s.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/raidboss/data/07-dt/raid/r8s.ts b/ui/raidboss/data/07-dt/raid/r8s.ts index d136fb56c5..70b3a66882 100644 --- a/ui/raidboss/data/07-dt/raid/r8s.ts +++ b/ui/raidboss/data/07-dt/raid/r8s.ts @@ -1643,7 +1643,7 @@ const triggerSet: TriggerSet = { switch (matches.id) { case 'A45F': - data.herosBlowSafeDir = Math.abs(Directions.hdgTo16DirNum(actor.Heading) - 4) % 16; + data.herosBlowSafeDir = ((Directions.hdgTo16DirNum(actor.Heading) - 4) + 16) % 16; break; case 'A461': data.herosBlowSafeDir = (Directions.hdgTo16DirNum(actor.Heading) + 4) % 16;