Actually use fixed IDs in MCEdit reader.

Fixes WORLDEDIT-3947.
This commit is contained in:
wizjany 2019-07-16 19:45:27 -04:00
parent 6e90c59136
commit f75104f2ac

View File

@ -206,6 +206,8 @@ public class MCEditSchematicReader extends NBTSchematicReader {
}
if (values.isEmpty()) {
t = null;
} else {
t = new CompoundTag(values);
}
if (fixer != null && t != null) {
@ -378,6 +380,10 @@ public class MCEditSchematicReader extends NBTSchematicReader {
return "note_block";
case "Structure":
return "structure_block";
case "Chest":
return "chest";
case "Sign":
return "sign";
default:
return id;
}