Fix Sign json generation

This commit is contained in:
Kenzie Togami 2016-06-18 09:49:46 -07:00
parent e42107557e
commit f689d53d62

View File

@ -64,7 +64,7 @@ public class SignBlock extends BaseBlock implements TileEntityBlock {
if (text[i].isEmpty()) { if (text[i].isEmpty()) {
text[i] = EMPTY; text[i] = EMPTY;
} else { } else {
text[i] = "{\"text\":\"" + GsonUtil.stringValue(text[i]) + "\"}"; text[i] = "{\"text\":" + GsonUtil.stringValue(text[i]) + "}";
} }
} }
this.text = text; this.text = text;