Fix Tom Bombadil text

This commit is contained in:
PurpleCrowbar 2023-06-21 23:26:00 +01:00
parent 09676667be
commit a9c28c420f
2 changed files with 4 additions and 3 deletions

View file

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