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.");