diff --git a/BossMod/Modules/Dawntrail/Extreme/Ex3Sphene/VirtualShiftEarth.cs b/BossMod/Modules/Dawntrail/Extreme/Ex3Sphene/VirtualShiftEarth.cs index 8451dabb8f..9804b7738c 100644 --- a/BossMod/Modules/Dawntrail/Extreme/Ex3Sphene/VirtualShiftEarth.cs +++ b/BossMod/Modules/Dawntrail/Extreme/Ex3Sphene/VirtualShiftEarth.cs @@ -140,7 +140,7 @@ public override void AddHints(int slot, Actor actor, TextHints hints) if (_meteorsAbovePlatforms[slot] != shouldBeAbovePlatform) hints.Add(shouldBeAbovePlatform ? "Fly above platform!" : "GTFO from platform!"); - var shouldNotBeStacked = _meteorsAbovePlatforms[slot] ? Raid.WithoutSlot() : Raid.WithSlot().IncludedInMask(_meteorsAbovePlatforms).Actors(); + var shouldNotBeStacked = _meteorsAbovePlatforms[slot] ? Raid.WithoutSlot() : Raid.WithSlot(true).IncludedInMask(_meteorsAbovePlatforms).Actors(); if (shouldNotBeStacked.InRadiusExcluding(actor, 4).Any()) hints.Add("Spread!"); @@ -151,7 +151,7 @@ public override void AddHints(int slot, Actor actor, TextHints hints) public override void DrawArenaForeground(int pcSlot, Actor pc) { - foreach (var p in Raid.WithSlot().IncludedInMask(_meteorsAbovePlatforms).Actors()) + foreach (var p in Raid.WithSlot(true).IncludedInMask(_meteorsAbovePlatforms).Actors()) Arena.AddCircle(p.Position, 4, ArenaColor.Danger); }