3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-07-09 20:18:03 +02:00

Fix reading of tile entities with "id" instead of "Id" tag (#2211)

Dieser Commit ist enthalten in:
Marco Neuhaus 2023-05-20 11:57:13 +02:00 committet von GitHub
Ursprung a14035d430
Commit 52723439dd
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -266,8 +266,8 @@ public class SpongeSchematicReader extends NBTSchematicReader {
if (id == null) {
continue;
}
values.put("id", id);
//FAWE end
values.put("id", values.get("Id"));
values.remove("Id");
values.remove("Pos");
if (fixer != null) {