* Brood Sliver - Fixed a bug that happened by text generation.

This commit is contained in:
LevelX2 2014-07-21 17:13:27 +02:00
parent 6669d1780a
commit 9ece8a21f6

View file

@ -76,6 +76,9 @@ public class CreateTokenTargetEffect extends OneShotEffect {
@Override
public String getText(Mode mode) {
if (staticText != null && !staticText.isEmpty()) {
return staticText;
}
StringBuilder sb = new StringBuilder("put ");
if (amount.toString().equals("1")) {
sb.append("a");