Additional fixes for getNetMana from #6132 (final)

This commit is contained in:
Oleg Agafonov 2020-01-03 06:27:39 +04:00
parent 579a37c7c8
commit dceb93e7a6
22 changed files with 219 additions and 238 deletions

View file

@ -44,7 +44,7 @@ public class AddManaToManaPoolTargetControllerEffect extends ManaEffect {
public AddManaToManaPoolTargetControllerEffect(final AddManaToManaPoolTargetControllerEffect effect) {
super(effect);
this.mana = effect.mana;
this.mana = effect.mana.copy();
this.emptyOnlyOnTurnsEnd = effect.emptyOnlyOnTurnsEnd;
}