forked from External/mage
more text adjustments
This commit is contained in:
parent
3ed1a82ac9
commit
79a37d249e
4 changed files with 8 additions and 8 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue