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