mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
Fix Tom Bombadil text
This commit is contained in:
parent
09676667be
commit
a9c28c420f
2 changed files with 4 additions and 3 deletions
|
|
@ -1,5 +1,6 @@
|
|||
package mage.abilities.hint.common;
|
||||
|
||||
import com.sun.xml.internal.ws.util.StringUtils;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.hint.Hint;
|
||||
import mage.cards.Card;
|
||||
|
|
@ -62,7 +63,7 @@ public class CountersOnPermanentsHint implements Hint {
|
|||
|
||||
}
|
||||
}
|
||||
return this.counterType.getName() + " counters among " + this.filter.getMessage() + ": " + totalCounters;
|
||||
return StringUtils.capitalize(this.counterType.getName()) + " counters among " + this.filter.getMessage() + ": " + totalCounters;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue