- Don't use RegenerateAi abilities if it has a Target object and nothing is actually targeted

This commit is contained in:
Sol
2013-03-24 18:51:36 +00:00
parent 3ba8405959
commit 1f2ba326d3
2 changed files with 4 additions and 1 deletions

View File

@@ -148,6 +148,9 @@ public class RegenerateAi extends SpellAbilityAi {
}
}
}
if (tgt.getTargets().isEmpty()) {
return false;
}
}
return chance;