* 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

@ -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());