Modified selectButtonOK() to handle "Draw a card." instead of "Cantrip".

This commit is contained in:
jendave
2011-08-06 03:13:55 +00:00
parent a815182f7d
commit 184a0d15a2

View File

@@ -19,7 +19,7 @@ public class Input_StackNotEmpty extends Input implements java.io.Serializable
SpellAbility sa = AllZone.Stack.pop();
Card c = sa.getSourceCard();
if (sa.getSourceCard().getKeyword().contains("Cantrip"))
if (sa.getSourceCard().getKeyword().contains("Draw a card."))
AllZone.GameAction.drawCard(sa.getSourceCard().getController());