mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
fix Stone Idol Trap and Esper Terra
This commit is contained in:
parent
f92af2b9cd
commit
0b4d8d02d7
2 changed files with 2 additions and 2 deletions
|
|
@ -119,7 +119,7 @@ class EsperTerraEffect extends OneShotEffect {
|
|||
.filter(amount -> amount > 0)
|
||||
.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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -104,7 +104,7 @@ class StoneIdolTrapEffect extends OneShotEffect {
|
|||
public boolean apply(Game game, Ability source) {
|
||||
CreateTokenEffect effect = new CreateTokenEffect(new StoneIdolToken());
|
||||
if (effect.apply(game, source)) {
|
||||
effect.exileTokensCreatedAtNextEndStep(game, source);
|
||||
effect.removeTokensCreatedAt(game, source, false, PhaseStep.END_TURN, TargetController.YOU);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue