Skip to content

Commit

Permalink
fixed: Milk string was not translated correctly cech12/CeramicBucket#74
Browse files Browse the repository at this point in the history
  • Loading branch information
cech12 committed Oct 30, 2023
1 parent 79d303e commit 0bf1363
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Forge Recommended Versioning](https://mcforge.readthedocs.io/en/latest/conventions/versioning/).

## [1.19.4-1.3.0.2] - 2023-10-30
### Fixed
- Milk string was not translated correctly https://github.com/cech12/CeramicBucket/issues/74
- Spinefish texture of Aquamirea mod was not rendered correctly

## [1.19.4-1.3.0.1] - 2023-09-10
### Fixed
- textures of catfish and cosmic cod (Alex's Mobs) were not rendered correctly
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false

mod_id=bucketlib
mod_version=1.3.0.1
mod_version=1.3.0.2
minecraft_version=1.19.4
forge_version=45.1.4

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public Component getName(@Nonnull ItemStack stack) {
argument = (block != null) ? block.getName() : Component.literal("?");
} else if (BucketLibUtil.containsMilk(stack)) {
descriptionId += ".filled";
argument = Component.translatable("fluid.minecraft.milk");
argument = Component.translatable("fluid_type.minecraft.milk");
} else {
//is empty
return Component.translatable(descriptionId);
Expand Down

0 comments on commit 0bf1363

Please sign in to comment.