Change Duration.UntilTheNextEndStep to statically end during the beginning of EndStep.

This commit is contained in:
Grath 2024-09-30 22:08:58 -04:00
parent b1678036fa
commit 49bce836f9
6 changed files with 61 additions and 28 deletions

View file

@ -692,6 +692,11 @@ public class GameState implements Serializable, Copyable<GameState> {
game.applyEffects();
}
// remove beginning of end step effects
public void removeBoESEffects(Game game) {
effects.removeBeginningOfEndStepEffects(game);
}
public void removeTurnStartEffect(Game game) {
delayed.removeStartOfNewTurn(game);
}