Skip to content

Commit

Permalink
Thordan - don't try to predict hiemal storm voidzones, people are mov…
Browse files Browse the repository at this point in the history
…ing too much.
  • Loading branch information
awgil committed Jan 22, 2024
1 parent 8bf5acc commit fadac5c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions BossMod/Modules/Endwalker/Unreal/Un5Thordan/Intermission3.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq;

namespace BossMod.Endwalker.Unreal.Un5Thordan;
Expand All @@ -21,9 +20,9 @@ public override void OnEventCast(BossModule module, Actor caster, ActorCastEvent
}
}

class HiemalStormVoidzone : Components.PersistentVoidzoneAtCastTarget
class HiemalStormVoidzone : Components.PersistentVoidzone
{
public HiemalStormVoidzone() : base(6, ActionID.MakeSpell(AID.HiemalStormAOE), m => m.Enemies(OID.HiemalStorm).Where(x => x.EventState != 7), 1.5f) { }
public HiemalStormVoidzone() : base(6, m => m.Enemies(OID.HiemalStorm).Where(x => x.EventState != 7)) { }
}

class SpiralPierce : Components.BaitAwayTethers
Expand Down

0 comments on commit fadac5c

Please sign in to comment.