Fixed miss counter's copy in some effects;

This commit is contained in:
Oleg Agafonov 2021-07-01 21:14:20 +04:00
parent 65dffaa75c
commit d9e414db34
6 changed files with 11 additions and 15 deletions

View file

@ -1,4 +1,3 @@
package mage.abilities.effects.common;
import mage.abilities.Ability;
@ -32,7 +31,7 @@ public class EntersBattlefieldWithXCountersEffect extends OneShotEffect {
public EntersBattlefieldWithXCountersEffect(final EntersBattlefieldWithXCountersEffect effect) {
super(effect);
this.counter = effect.counter;
this.counter = effect.counter.copy();
}
@Override