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

@ -14,7 +14,6 @@ import mage.game.Game;
import mage.players.Player;
/**
*
* @author magenoxx
*/
public class AddManaToManaPoolSourceControllerEffect extends OneShotEffect {
@ -29,7 +28,7 @@ public class AddManaToManaPoolSourceControllerEffect extends OneShotEffect {
public AddManaToManaPoolSourceControllerEffect(final AddManaToManaPoolSourceControllerEffect effect) {
super(effect);
this.mana = effect.mana;
this.mana = effect.mana.copy();
}
@Override