mirror of
https://github.com/magefree/mage.git
synced 2025-12-29 06:52:02 -08:00
* Novijen Sages - Fixed that it was not possible to pay the activated ability with the counters of Novijen Sages.
This commit is contained in:
parent
5b57a5b6ee
commit
b58d2e88ea
5 changed files with 75 additions and 4 deletions
|
|
@ -123,7 +123,7 @@ public class RemoveCounterCost extends CostImpl {
|
|||
int numberOfCountersSelected = 1;
|
||||
if (countersLeft > 1 && countersOnPermanent > 1) {
|
||||
numberOfCountersSelected = controller.getAmount(1, Math.min(countersLeft, countersOnPermanent),
|
||||
new StringBuilder("Remove how many counters from ").append(permanent.getLogName()).toString(), game);
|
||||
new StringBuilder("Remove how many counters from ").append(permanent.getIdName()).toString(), game);
|
||||
}
|
||||
permanent.removeCounters(counterName, numberOfCountersSelected, game);
|
||||
if (permanent.getCounters().getCount(counterName) == 0 ){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue