Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: No aoe uses for single ! !
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Apr 16, 2023
1 parent f781636 commit 3a59b3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RotationSolver.Basic/Actions/BaseAction_Target.cs
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ private int CanGetTargetCount(BattleChara target, IEnumerable<BattleChara> canAt
public bool CanGetTarget(BattleChara target, BattleChara subTarget)
{
if (target == null) return false;
if (!IsSingleTarget) return false;
if (IsSingleTarget) return false;
if (target.DistanceToPlayer() > Range) return false;

var pPos = Service.Player.Position;
Expand Down

0 comments on commit 3a59b3e

Please sign in to comment.