Skip to content

Commit

Permalink
Merge pull request #557 from FFXIV-CombatReborn/mergeWIP
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
CarnifexOptimus authored Jan 14, 2025
2 parents b76f42f + d4464ae commit a6e3dfe
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 a6e3dfe

Please sign in to comment.