forked from External/mage
Fixed a bug in AddCountersSourceEffect.
This commit is contained in:
parent
07519d61a9
commit
0eb8ba615e
2 changed files with 2 additions and 2 deletions
|
|
@ -85,7 +85,7 @@ public class AddCountersSourceEffect extends OneShotEffect<AddCountersSourceEffe
|
|||
if (counter != null) {
|
||||
Counter newCounter = counter.copy();
|
||||
newCounter.add(amount.calculate(game, source));
|
||||
permanent.addCounters(counter.copy(), game);
|
||||
permanent.addCounters(newCounter, game);
|
||||
if (informPlayers) {
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
if (player != null) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue