mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 18:58:00 +00:00
- Skipping your "next" untap step is cumulative.
This commit is contained in:
@@ -192,7 +192,7 @@ public class PhaseHandler implements java.io.Serializable {
|
|||||||
switch (phase) {
|
switch (phase) {
|
||||||
case UNTAP:
|
case UNTAP:
|
||||||
if (playerTurn.hasKeyword("Skip your next untap step.")) {
|
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 true;
|
||||||
}
|
}
|
||||||
return playerTurn.hasKeyword("Skip the untap step of this turn.") || playerTurn.hasKeyword("Skip your untap step.");
|
return playerTurn.hasKeyword("Skip the untap step of this turn.") || playerTurn.hasKeyword("Skip your untap step.");
|
||||||
|
|||||||
Reference in New Issue
Block a user