forked from External/mage
[CON] various text fixes
This commit is contained in:
parent
edaaac53d9
commit
c8cdc0a502
28 changed files with 237 additions and 212 deletions
|
|
@ -153,7 +153,10 @@ public class DamageTargetEffect extends OneShotEffect {
|
|||
String message = amount.getMessage();
|
||||
sb.append(this.sourceName).append(" deals ");
|
||||
if (message.isEmpty() || !message.equals("1")) {
|
||||
sb.append(amount).append(' ');
|
||||
sb.append(amount);
|
||||
}
|
||||
if (!sb.toString().endsWith(" ")) {
|
||||
sb.append(' ');
|
||||
}
|
||||
sb.append("damage to ");
|
||||
if (!targetDescription.isEmpty()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue