mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Fixed a NPE of PutTokenOntoBattlefieldCopyTargetEffect.
This commit is contained in:
parent
0bc3ed1cbc
commit
d3ce238b53
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ public class PutTokenOntoBattlefieldCopyTargetEffect extends OneShotEffect {
|
||||||
this.playerId = effect.playerId;
|
this.playerId = effect.playerId;
|
||||||
this.additionalCardType = effect.additionalCardType;
|
this.additionalCardType = effect.additionalCardType;
|
||||||
this.gainsHaste = effect.gainsHaste;
|
this.gainsHaste = effect.gainsHaste;
|
||||||
this.addedTokenPermanents.addAll(effect.addedTokenPermanents);
|
this.addedTokenPermanents = new ArrayList<>(effect.addedTokenPermanents);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue