Support old, corrupt, schematics

This commit is contained in:
dordsor21 2021-09-24 16:41:09 +01:00
parent 4e944052cd
commit 6b5f21d67b
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B
2 changed files with 13 additions and 1 deletions

View File

@ -71,7 +71,6 @@ public class FastSchematicReader extends NBTSchematicReader {
private List<Map<String, Object>> tiles;
private List<Map<String, Object>> entities;
private int width;
private int height;
private int length;
@ -339,6 +338,10 @@ public class FastSchematicReader extends NBTSchematicReader {
values.put("y", new IntTag(y));
values.put("z", new IntTag(z));
values.put("id", id);
} else if (values.get("id") != null) {
values.put("x", new IntTag(x));
values.put("y", new IntTag(y));
values.put("z", new IntTag(z));
}
values.remove("Id");
values.remove("Pos");

View File

@ -258,6 +258,15 @@ public class SpongeSchematicReader extends NBTSchematicReader {
values.put("x", new IntTag(pt.getBlockX()));
values.put("y", new IntTag(pt.getBlockY()));
values.put("z", new IntTag(pt.getBlockZ()));
//FAWE start - support old, corrupt schematics
Tag id = values.get("Id");
if (id == null) {
id = values.get("id");
}
if (id == null) {
continue;
}
//FAWE end
values.put("id", values.get("Id"));
values.remove("Id");
values.remove("Pos");