From 41045ae8aa7c639d056e7e8a8b528cb778a0b528 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zo=C3=AB=20Gidiere?= Date: Sun, 10 Dec 2023 18:47:12 -0700 Subject: [PATCH] literally forgor the most important part --- .../java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java | 1 + 1 file changed, 1 insertion(+) diff --git a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java index 01cd5ba2a..c8df3ba84 100644 --- a/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java +++ b/platforms/mixin-common/src/main/java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java @@ -70,6 +70,7 @@ public class MinecraftWorldHandle implements WorldHandle { "Translating " + id + " to " + newid + ". In 1.20.3 entity parsing was reworked" + ". You are advised to preform this rename in your config backs as this translation will be removed in the next major " + "version of Terra."); + id = newid; } if(!id.contains(":")) throw new IllegalArgumentException("Invalid entity identifier " + id); Identifier identifier = Identifier.tryParse(id);