Skip to content

Commit

Permalink
Merge branch 'master' into deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Mykezero committed Jun 19, 2018
2 parents f62b47c + 6ffe212 commit e99525b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EasyFarm/Classes/AbilityUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static bool IsRecastable(IMemoryAPI fface, BattleAbility ability)
if (ability.AbilityType == AbilityType.Weaponskill) return true;

// No recast for ranged attacks.
if (AbilityType.Range.HasFlag(ability.AbilityType)) return true;
if (AbilityType.Range == ability.AbilityType) return true;

// If a spell get spell recast
if (ResourceHelper.IsSpell(ability.AbilityType))
Expand Down

0 comments on commit e99525b

Please sign in to comment.