Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
Merge pull request #408 from Brokkonaut/fix-old-sign-converting
Fix loading and converting signs in old schematics
Dieser Commit ist enthalten in:
Commit
f67f2ed93e
@ -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