Skip to content

Commit

Permalink
Merge pull request #139 from FFXIV-CombatReborn/mergeWIP2
Browse files Browse the repository at this point in the history
code analyzer fix
  • Loading branch information
CarnifexOptimus authored Jun 24, 2024
2 parents 6b996be + e2e9278 commit 845f8dd
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,12 @@ class AetheroChemicalLaserCombo(BossModule module) : Components.GenericAOEs(modu
{
private static readonly AOEShape[] _shapes = [new AOEShapeCone(50, 60.Degrees()), new AOEShapeDonut(8, 60), new AOEShapeRect(40, 2.5f),
new AOEShapeCross(60, 5), new AOEShapeDonut(5, 60)];

private readonly Dictionary<uint, List<AOEInstance>> _icons = new() {
{ (uint)IconID.Icon1, new List<AOEInstance>() },
{ (uint)IconID.Icon2, new List<AOEInstance>() },
{ (uint)IconID.Icon3, new List<AOEInstance>() }
};
private AOEInstance _boss = default;
private AOEInstance _boss;

public override IEnumerable<AOEInstance> ActiveAOEs(int slot, Actor actor)
{
Expand Down

0 comments on commit 845f8dd

Please sign in to comment.