mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
Merge pull request #3381 from exmage/fix-counter-cost-source
Fix source of PutCountersSourceCost not being set
This commit is contained in:
commit
e53e905009
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ public class PutCountersSourceCost extends CostImpl {
|
|||
public boolean pay(Ability ability, Game game, UUID sourceId, UUID controllerId, boolean noMana, Cost costToPay) {
|
||||
Permanent permanent = game.getPermanent(sourceId);
|
||||
if (permanent != null) {
|
||||
this.paid = permanent.addCounters(counter, null, game);
|
||||
this.paid = permanent.addCounters(counter, ability, game);
|
||||
}
|
||||
return paid;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue