Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CarnifexOptimus committed Jan 14, 2025
1 parent 7b029b0 commit d4464ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class HalfFull(BossModule module) : HalfRect(module, AID.HalfFull)
private readonly ChasmOfVollok _aoe = module.FindComponent<ChasmOfVollok>()!;
public override IEnumerable<AOEInstance> ActiveAOEs(int slot, Actor actor)
{
return Casters.Count != 0 && _aoe.AOEs.Count != 0 ? [Casters[0]] : [];
return Casters.Count != 0 && _aoe.AOEs.Count == 0 ? [Casters[0]] : [];
}
}

Expand Down

0 comments on commit d4464ae

Please sign in to comment.