more text adjustments

This commit is contained in:
xenohedron 2024-06-06 23:28:10 -04:00
parent 3ed1a82ac9
commit 79a37d249e
4 changed files with 8 additions and 8 deletions

View file

@ -42,11 +42,11 @@ public class GetEnergyCountersControllerEffect extends OneShotEffect {
}
private void setText() {
if (staticText == null || !staticText.isEmpty()) {
if (staticText != null && !staticText.isEmpty()) {
return;
}
if (value.getMessage().equals("that many")) {
staticText = "that many {E}";
if (value.toString().equals("that many")) {
staticText = "you get that many {E} <i>(energy counters)</i>.";
return;
}
StringBuilder sb = new StringBuilder();