- Fixed the keyword "May be played by your opponent".

This commit is contained in:
Sloth
2012-02-05 18:59:52 +00:00
parent b104e05329
commit b766bbed39
5 changed files with 6 additions and 4 deletions

View File

@@ -2460,6 +2460,7 @@ public class CardFactoryUtil {
}
if (c.isLand() && (c.hasKeyword("May be played")
|| c.hasKeyword("May be played by your opponent")
|| c.hasKeyword("May be played without paying its mana cost"))) {
return true;
}
@@ -2472,6 +2473,7 @@ public class CardFactoryUtil {
if (sa.isSpell()
&& (c.hasKeyword("May be played")
|| c.hasKeyword("May be played by your Opponent")
|| c.hasKeyword("May be played without paying its mana cost")
|| (c.hasStartOfKeyword("Flashback") && zone
.is(Zone.Graveyard))) && restrictZone.equals(Zone.Hand)) {