diff --git a/CHANGELOG.md b/CHANGELOG.md index 55082a64e..daa10274e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -62,6 +62,7 @@ Unless otherwise specified, any version comparison below is the comparison of se - Changed `ContainerActionProcessorHolder` to a final class instead of an interface, because this abstraction is meaningless. - Changed `enableGui` to `enable-gui` in `server-settings.yml` +- Disabled packet limit only in dev build. ### Fixed @@ -71,6 +72,7 @@ Unless otherwise specified, any version comparison below is the comparison of se - Waxing copper-made block using honeycomb won't call `BlockFadeEvent` now. - Fixed the bug that player can still open enchant table even if he is sneaking. - Fixed the bug that brewing stand fast brew and lagging brew animation. +- Fixed translation for potion mix loading. ## [0.1.2](https://github.com/AllayMC/Allay/releases/tag/0.1.2) (API 0.3.0) - 2024-12-31 @@ -100,7 +102,6 @@ Unless otherwise specified, any version comparison below is the comparison of se maintainability of the project. - Introduced better names for some of the fields in `PlayerAuthInputPacketProcessor`, this improved the readability of the code. -- Disabled packet limit only in dev build. ### Fixed diff --git a/server/src/main/java/org/allaymc/server/registry/loader/PotionMixRecipeRegistryLoader.java b/server/src/main/java/org/allaymc/server/registry/loader/PotionMixRecipeRegistryLoader.java index e356dc772..0d21912b8 100644 --- a/server/src/main/java/org/allaymc/server/registry/loader/PotionMixRecipeRegistryLoader.java +++ b/server/src/main/java/org/allaymc/server/registry/loader/PotionMixRecipeRegistryLoader.java @@ -22,7 +22,7 @@ public class PotionMixRecipeRegistryLoader implements RegistryLoader> { @Override public Map load(Void $) { - log.info(TrKeys.A_RECIPE_POTIONMIX_LOADING); + log.info(I18n.get().tr(TrKeys.A_RECIPE_POTIONMIX_LOADING)); var stream = Objects.requireNonNull(Utils.getResource("recipes.json")); var obj = JsonParser.parseReader(new InputStreamReader(stream)).getAsJsonObject();