Modified playStack() and playNoStack() to handle "Draw a card." instead of "Cantrip".

This commit is contained in:
jendave
2011-08-06 03:13:50 +00:00
parent 684ba0121e
commit a815182f7d

View File

@@ -55,7 +55,7 @@ private static Random random = new Random();
AllZone.Computer_Hand.remove(sa.getSourceCard());
if (sa.getSourceCard().getKeyword().contains("Cantrip"))
if (sa.getSourceCard().getKeyword().contains("Draw a card."))
AllZone.GameAction.drawCard(sa.getSourceCard().getController());
payManaCost(sa);
@@ -79,7 +79,7 @@ private static Random random = new Random();
if(sa instanceof Ability_Tap)
sa.getSourceCard().tap();
if (sa.getSourceCard().getKeyword().contains("Cantrip"))
if (sa.getSourceCard().getKeyword().contains("Draw a card."))
AllZone.GameAction.drawCard(sa.getSourceCard().getController());
payManaCost(sa);