mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Changed isFirstTurn to count turns taken.
- Fixed Serra Avenger's interaction with Time Walk and Flash.
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user