mirror of
https://github.com/correl/mage.git
synced 2024-11-24 19:19:56 +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;
|
package mage.abilities.hint.common;
|
||||||
|
|
||||||
import com.sun.xml.internal.ws.util.StringUtils;
|
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.hint.Hint;
|
import mage.abilities.hint.Hint;
|
||||||
import mage.counters.Counter;
|
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
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue