fix Stone Idol Trap and Esper Terra

This commit is contained in:
xenohedron 2025-09-07 00:18:06 -04:00
parent f92af2b9cd
commit 0b4d8d02d7
2 changed files with 2 additions and 2 deletions

View file

@ -119,7 +119,7 @@ class EsperTerraEffect extends OneShotEffect {
.filter(amount -> amount > 0) .filter(amount -> amount > 0)
.ifPresent(amount -> token.addCounters(CounterType.LORE.createInstance(amount), source, game)); .ifPresent(amount -> token.addCounters(CounterType.LORE.createInstance(amount), source, game));
} }
effect.sacrificeTokensCreatedAtNextEndStep(game, source); effect.removeTokensCreatedAt(game, source, false, PhaseStep.END_TURN, TargetController.YOU);
return true; return true;
} }
} }

View file

@ -104,7 +104,7 @@ class StoneIdolTrapEffect extends OneShotEffect {
public boolean apply(Game game, Ability source) { public boolean apply(Game game, Ability source) {
CreateTokenEffect effect = new CreateTokenEffect(new StoneIdolToken()); CreateTokenEffect effect = new CreateTokenEffect(new StoneIdolToken());
if (effect.apply(game, source)) { if (effect.apply(game, source)) {
effect.exileTokensCreatedAtNextEndStep(game, source); effect.removeTokensCreatedAt(game, source, false, PhaseStep.END_TURN, TargetController.YOU);
return true; return true;
} }
return false; return false;