mirror of
https://github.com/correl/mage.git
synced 2024-11-14 11:09:31 +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.permanent.Permanent;
|
||||
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
|
||||
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue