3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-06 16:12:51 +02:00

Fix Sign json generation

Dieser Commit ist enthalten in:
Kenzie Togami 2016-06-18 09:49:46 -07:00
Ursprung e42107557e
Commit f689d53d62

Datei anzeigen

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