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

Actually use fixed IDs in MCEdit reader.

Fixes WORLDEDIT-3947.
Dieser Commit ist enthalten in:
wizjany 2019-07-16 19:45:27 -04:00
Ursprung 6e90c59136
Commit f75104f2ac

Datei anzeigen

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