mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Fix hint text for Tom Bombadil
This commit is contained in:
parent
e795726efe
commit
f85dd656f2
1 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@ import mage.filter.FilterPermanent;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.game.permanent.Permanent;
|
import mage.game.permanent.Permanent;
|
||||||
import mage.abilities.condition.common.CountersOnPermanentsCondition;
|
import mage.abilities.condition.common.CountersOnPermanentsCondition;
|
||||||
|
import mage.util.CardUtil;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A hint which keeps track of how many counters of a specific type there are
|
* A hint which keeps track of how many counters of a specific type there are
|
||||||
|
@ -51,7 +52,7 @@ public class CountersOnPermanentsHint implements Hint {
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return this.counterType.getName() + " counters among " + this.filter.getMessage() + ": " + totalCounters;
|
return CardUtil.getTextWithFirstCharUpperCase(this.counterType.getName()) + " counters among " + this.filter.getMessage() + ": " + totalCounters;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue