Skip to content

Commit

Permalink
fix: translation for potion mix loading
Browse files Browse the repository at this point in the history
  • Loading branch information
IWareQ committed Jan 13, 2025
1 parent 62d17fd commit a4a96a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
public class PotionMixRecipeRegistryLoader implements RegistryLoader<Void, Map<Identifier, PotionMixRecipe>> {
@Override
public Map<Identifier, PotionMixRecipe> 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();
Expand Down

0 comments on commit a4a96a1

Please sign in to comment.