- Changed isFirstTurn to count turns taken.

- Fixed Serra Avenger's interaction with Time Walk and Flash.
This commit is contained in:
jendave
2011-08-06 12:34:51 +00:00
parent e197a97402
commit b260ce4f79
3 changed files with 12 additions and 8 deletions

View File

@@ -406,7 +406,11 @@ public class CardFactory_Creatures {
@Override
public boolean canPlay() {
return super.canPlay() && 6 < AllZone.Phase.getTurn();
Player turn = AllZone.Phase.getPlayerTurn();
if (turn.equals(card.getController()) && turn.getTurn() <= 3)
return false;
return super.canPlay();
}
};
card.clearSpellAbility();