Skip to content

Commit

Permalink
merge fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CarnifexOptimus committed Dec 13, 2024
1 parent 8982223 commit e88712b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BossMod/Modules/Dawntrail/Ultimate/FRU/P3Apocalypse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ public override void DrawArenaForeground(int pcSlot, Actor pc)
if (_aoes.Count > 0 && NumCasts < 16 && _starting != null)
{
var safeOff = 10 * (_starting.Value - _rotation).ToDirection();
Arena.AddCircle(Module.Center + safeOff, 1, ArenaColor.Safe);
Arena.AddCircle(Module.Center - safeOff, 1, ArenaColor.Safe);
Arena.AddCircle(Module.Center + safeOff, 1, Colors.Safe);
Arena.AddCircle(Module.Center - safeOff, 1, Colors.Safe);
}
}

Expand Down

0 comments on commit e88712b

Please sign in to comment.