Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
Fix loading and converting signs in old schematics
* Sign texts not starting with { are never valid json objects, so don't try to parse * Else try to parse as json, but fall back to read sign text as string if not parseable
Dieser Commit ist enthalten in:
Ursprung
52263ac3b7
Commit
4d2fe62d97
@ -23,6 +23,7 @@ import com.google.gson.JsonElement;
|
|||||||
import com.google.gson.JsonObject;
|
import com.google.gson.JsonObject;
|
||||||
import com.google.gson.JsonParser;
|
import com.google.gson.JsonParser;
|
||||||
import com.google.gson.JsonPrimitive;
|
import com.google.gson.JsonPrimitive;
|
||||||
|
import com.google.gson.JsonSyntaxException;
|
||||||
import com.sk89q.jnbt.StringTag;
|
import com.sk89q.jnbt.StringTag;
|
||||||
import com.sk89q.jnbt.Tag;
|
import com.sk89q.jnbt.Tag;
|
||||||
import com.sk89q.worldedit.blocks.BaseBlock;
|
import com.sk89q.worldedit.blocks.BaseBlock;
|
||||||
@ -43,7 +44,17 @@ public class SignCompatibilityHandler implements NBTCompatibilityHandler {
|
|||||||
Tag value = values.get(key);
|
Tag value = values.get(key);
|
||||||
if (value instanceof StringTag) {
|
if (value instanceof StringTag) {
|
||||||
String storedString = ((StringTag) value).getValue();
|
String storedString = ((StringTag) value).getValue();
|
||||||
JsonElement jsonElement = new JsonParser().parse(storedString);
|
JsonElement jsonElement = null;
|
||||||
|
if (storedString != null && storedString.startsWith("{")) {
|
||||||
|
try {
|
||||||
|
jsonElement = new JsonParser().parse(storedString);
|
||||||
|
} catch (JsonSyntaxException ex) {
|
||||||
|
// ignore: jsonElement will be null in the next check
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (jsonElement == null) {
|
||||||
|
jsonElement = new JsonPrimitive(storedString == null ? "" : storedString);
|
||||||
|
}
|
||||||
if (jsonElement.isJsonObject()) {
|
if (jsonElement.isJsonObject()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren