From ecac92d9b3632234e98f5828e53b07fd77563aa6 Mon Sep 17 00:00:00 2001 From: swordshine Date: Thu, 5 Apr 2018 22:16:54 +0800 Subject: [PATCH] - Skipping your "next" untap step is cumulative. --- forge-game/src/main/java/forge/game/phase/PhaseHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-game/src/main/java/forge/game/phase/PhaseHandler.java b/forge-game/src/main/java/forge/game/phase/PhaseHandler.java index 14d291d893a..4ffc1d30099 100644 --- a/forge-game/src/main/java/forge/game/phase/PhaseHandler.java +++ b/forge-game/src/main/java/forge/game/phase/PhaseHandler.java @@ -192,7 +192,7 @@ public class PhaseHandler implements java.io.Serializable { switch (phase) { case UNTAP: if (playerTurn.hasKeyword("Skip your next untap step.")) { - playerTurn.removeKeyword("Skip your next untap step."); + playerTurn.removeKeyword("Skip your next untap step.", false); // Skipping your "next" untap step is cumulative. return true; } return playerTurn.hasKeyword("Skip the untap step of this turn.") || playerTurn.hasKeyword("Skip your untap step.");