Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
erdelf committed Oct 20, 2024
1 parent 09cbc79 commit 02807f5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace BossMod.Autorotation.MiscAI;

public sealed class AD_Range(RotationModuleManager manager, Actor player) : RotationModule(manager, player)
public sealed class ADRange(RotationModuleManager manager, Actor player) : RotationModule(manager, player)
{
public static RotationModuleDefinition Definition() => new("Misc AI: AD Range", "Module for use by AutoDuty preset.", "erdelf", RotationModuleQuality.Basic, new(~0ul), 1000);

Expand All @@ -20,7 +20,7 @@ public override void Execute(StrategyValues strategy, Actor? primaryTarget, floa
radius = newRadius;
}
}
Hints.GoalZones.Add(Hints.GoalSingleTarget(primaryTarget.Position, radius+primaryTarget.HitboxRadius, 0.5f));
Hints.GoalZones.Add(Hints.GoalSingleTarget(primaryTarget.Position, radius + primaryTarget.HitboxRadius, 0.5f));
}
}
}

0 comments on commit 02807f5

Please sign in to comment.