From 0091e5b78546d3207d5899de799ff45d8ec0a39c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zo=C3=AB=20Gidiere?= Date: Sun, 10 Dec 2023 18:50:40 -0700 Subject: [PATCH] spell check --- .../java/com/dfsek/terra/mod/handle/MinecraftWorldHandle.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 c8df3ba84..bc00f3a12 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 @@ -45,7 +45,7 @@ public class MinecraftWorldHandle implements WorldHandle { data = "minecraft:short_grass"; logger.warn( "Translating minecraft:grass to minecraft:short_grass. In 1.20.3 minecraft:grass was renamed to minecraft:short_grass" + - ". You are advised to preform this rename in your config backs as this translation will be removed in the next major " + + ". You are advised to preform this rename in your config packs as this translation will be removed in the next major " + "version of Terra."); } net.minecraft.block.BlockState state = BlockArgumentParser.block(Registries.BLOCK.getReadOnlyWrapper(), data, true) @@ -68,7 +68,7 @@ public class MinecraftWorldHandle implements WorldHandle { String newid = "minecraft:" + id.toLowerCase();; logger.warn( "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 " + + ". You are advised to preform this rename in your config packs as this translation will be removed in the next major " + "version of Terra."); id = newid; }