* Novijen Sages - Fixed that it was not possible to pay the activated ability with the counters of Novijen Sages.

This commit is contained in:
LevelX2 2015-06-03 23:49:54 +02:00
parent 5b57a5b6ee
commit b58d2e88ea
5 changed files with 75 additions and 4 deletions

View file

@ -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 ){