support until your next turn delayed triggers (#12233)

This commit is contained in:
Susucre 2024-05-16 13:37:53 +02:00 committed by GitHub
parent 614be8e928
commit 3abce2f5c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 502 additions and 347 deletions

View file

@ -699,6 +699,10 @@ public class GameState implements Serializable, Copyable<GameState> {
game.applyEffects();
}
public void removeTurnStartEffect(Game game) {
delayed.removeStartOfNewTurn(game);
}
public void addEffect(ContinuousEffect effect, Ability source) {
addEffect(effect, null, source);
}