geforkt von Mirrors/FastAsyncWorldEdit
Actually use fixed IDs in MCEdit reader.
Fixes WORLDEDIT-3947.
Dieser Commit ist enthalten in:
Ursprung
6e90c59136
Commit
f75104f2ac
@ -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;
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren