diff --git a/CHANGELOG.md b/CHANGELOG.md index cc149c0ce6..04c0d4bc7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ Put the changelog BELOW the dashes. ANYTHING ABOVE IS IGNORED - Fixed Display Lanterns not properly rendering their contents when updated. - Fixed some loot tables not working in 1.21+. - Fixed Termite particles not rendering in 1.21+. +- Fixed a broken translation string in the `Entity` config. +- Fixed Cloud movement not working properly. - Added the Reach Boost effect to Beacons, thanks to a suggestion by wet.noodle/Ashlyn. - Added the `Reach Boost Beacons` config to toggle this. - Updated the Reach Boost icon, thanks to Zhen! diff --git a/src/main/java/net/frozenblock/wilderwild/config/gui/EntityConfigGui.java b/src/main/java/net/frozenblock/wilderwild/config/gui/EntityConfigGui.java index 399b1c6178..173928bfba 100644 --- a/src/main/java/net/frozenblock/wilderwild/config/gui/EntityConfigGui.java +++ b/src/main/java/net/frozenblock/wilderwild/config/gui/EntityConfigGui.java @@ -513,7 +513,7 @@ public static void setupEntries(@NotNull ConfigCategory category, @NotNull Confi entryBuilder.startBooleanToggle(text("warden_custom_tendrils"), modifiedWarden.wardenCustomTendrils) .setDefaultValue(defaultConfig.warden.wardenCustomTendrils) .setSaveConsumer(newValue -> warden.wardenCustomTendrils = newValue) - .setYesNoTextSupplier(bool -> text("warden_custom_tendrils." + bool)) + .setYesNoTextSupplier(bool -> text("improved." + bool)) .setTooltip(tooltip("warden_custom_tendrils")) .build(), warden.getClass(),