- Skipping your "next" untap step is cumulative.

This commit is contained in:
swordshine
2018-04-05 22:16:54 +08:00
parent 45b6f1a6ef
commit ecac92d9b3

View File

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