diff --git a/Mage/src/mage/abilities/effects/common/CreateTokenEffect.java b/Mage/src/mage/abilities/effects/common/CreateTokenEffect.java index 4f381993980..6ce5c35f574 100644 --- a/Mage/src/mage/abilities/effects/common/CreateTokenEffect.java +++ b/Mage/src/mage/abilities/effects/common/CreateTokenEffect.java @@ -74,7 +74,9 @@ public class CreateTokenEffect extends OneShotEffect { @Override public boolean apply(Game game, Ability source) { int value = amount.calculate(game, source); - token.putOntoBattlefield(value, game, source.getSourceId(), source.getControllerId()); + Token tokenCopy = token.copy(); + tokenCopy.getAbilities().newId(); // neccessary if token has ability like DevourAbility() + tokenCopy.putOntoBattlefield(value, game, source.getSourceId(), source.getControllerId()); return true; }