mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
Revert capitalisation of counter name in CountersOnPermanentsHint
This commit is contained in:
parent
a3d20bd099
commit
e795726efe
1 changed files with 1 additions and 2 deletions
|
|
@ -1,6 +1,5 @@
|
|||
package mage.abilities.hint.common;
|
||||
|
||||
import com.sun.xml.internal.ws.util.StringUtils;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.hint.Hint;
|
||||
import mage.counters.Counter;
|
||||
|
|
@ -52,7 +51,7 @@ public class CountersOnPermanentsHint implements Hint {
|
|||
|
||||
}
|
||||
}
|
||||
return StringUtils.capitalize(this.counterType.getName()) + " counters among " + this.filter.getMessage() + ": " + totalCounters;
|
||||
return this.counterType.getName() + " counters among " + this.filter.getMessage() + ": " + totalCounters;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue