mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
fixed not being able to cast face-down creatures at instant speed with effects like Winding Canyons and Teferi, Mage of Zhalfir
This commit is contained in:
parent
d46f6f4e45
commit
66ff9c43c1
1 changed files with 1 additions and 2 deletions
|
@ -194,8 +194,7 @@ public class MorphAbility extends StaticAbility implements AlternativeSourceCost
|
|||
|
||||
@Override
|
||||
public boolean isAvailable(Ability source, Game game) {
|
||||
return game.isMainPhase() && game.getActivePlayerId().equals(source.getControllerId())
|
||||
&& (game.getStack().isEmpty() || (game.getStack().size() == 1 && game.getStack().getFirst().getSourceId().equals(source.getSourceId())));
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue