This commit is contained in:
BetaSteward 2010-11-12 04:19:11 +00:00
parent 19ae34969e
commit c61881e5df
9 changed files with 36 additions and 13 deletions

View file

@ -141,8 +141,10 @@ public abstract class ActivatedAbilityImpl<T extends ActivatedAbilityImpl<T>> ex
if (!controlsAbility(playerId, game))
return false;
//20091005 - 602.5d/602.5e
if ((timing == TimingRule.INSTANT || game.canPlaySorcery(playerId)) && costs.canPay(sourceId, controllerId, game) && targets.canChoose(sourceId, playerId, game)) {
return true;
if (timing == TimingRule.INSTANT || game.canPlaySorcery(playerId)) {
if (costs.canPay(sourceId, controllerId, game) && targets.canChoose(sourceId, playerId, game)) {
return true;
}
}
return false;
}