* Terastodon - Fixed that destroying Parallel Lives still doubled the tokens (fixes #3651).

This commit is contained in:
LevelX2 2017-07-16 19:09:19 +02:00
parent 5cebe20768
commit 87c70043f7

View file

@ -60,7 +60,7 @@ public class Terastodon extends CardImpl {
} }
public Terastodon(UUID ownerId, CardSetInfo setInfo) { public Terastodon(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{6}{G}{G}"); super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{6}{G}{G}");
this.subtype.add("Elephant"); this.subtype.add("Elephant");
this.power = new MageInt(9); this.power = new MageInt(9);
@ -112,6 +112,7 @@ class TerastodonEffect extends OneShotEffect {
} }
} }
} }
game.applyEffects();
ElephantToken elephantToken = new ElephantToken(); ElephantToken elephantToken = new ElephantToken();
for (Entry<UUID, Integer> entry : destroyedPermanents.entrySet()) { for (Entry<UUID, Integer> entry : destroyedPermanents.entrySet()) {
elephantToken.putOntoBattlefield(entry.getValue(), game, source.getSourceId(), entry.getKey()); elephantToken.putOntoBattlefield(entry.getValue(), game, source.getSourceId(), entry.getKey());