- Fixed canPlayFromEffectAI (i don't why a canPlay check was put there, but it's definitely not the right place, because it prevents stuff like suspend from working).

This commit is contained in:
Sloth
2014-02-25 09:15:06 +00:00
parent 7f3d5c4234
commit c7758ca855

View File

@@ -957,7 +957,8 @@ public class AiController {
}
if (!chance)
return AiPlayDecision.TargetingFailed;
return canPlaySa(spell);
return AiPlayDecision.WillPlay;
}
if ( spell instanceof SpellPermanent) {