mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
Fixed cards with the keyword "Draw a Card." to not draw an extra card when it has ripple:4.
This commit is contained in:
@@ -45,7 +45,9 @@ public class Input_StackNotEmpty extends Input implements java.io.Serializable {
|
||||
}
|
||||
sa.resolve();
|
||||
|
||||
if(sa.getSourceCard().getKeyword().contains("Draw a card.")) AllZone.GameAction.drawCard(sa.getSourceCard().getController());
|
||||
if(sa.getSourceCard().getKeyword().contains("Draw a card.")
|
||||
&& !(sa.getSourceCard().getKeyword().contains("Ripple:4") && sa.isAbility()))
|
||||
AllZone.GameAction.drawCard(sa.getSourceCard().getController());
|
||||
|
||||
for(int i = 0; i < sa.getSourceCard().getKeyword().size(); i++) {
|
||||
String k = sa.getSourceCard().getKeyword().get(i);
|
||||
|
||||
Reference in New Issue
Block a user