fix drinking all blocks (#2246)

* langs

* fix drinking dirt

* Update CHANGELOG.md

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

---------

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>
This commit is contained in:
GameStar 2025-11-19 12:47:01 -06:00 committed by GitHub
parent ca0aba82e1
commit 67cc06c9ad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 6 deletions

View file

@ -28,6 +28,7 @@
- Made Nitrocellulose less annoying to craft @BlueBoat29
- Added tags to platinum group ores @Mqrius
- Moved the Flintlock from Steel --> Wrought Iron @BlueBoat29
- Added better tooltips for custom machines @Xtrial-01
### Bug fixes
- Fixed TFC bug where paths and roads can collapse on themselves when creating a staircase shape. (#2144) @Redeix
- Fixed the HV aqueous accumulator water recipe so the amount of water can actually fit in the HV machine @Pyritie
@ -44,6 +45,8 @@
- Fixed missing nixtamal food processor recipes. @Redeix
- Fixed missing lang string from loading screen. @Redeix
- Fixed some mismatched lang strings between ja_jp and en_us @BlueBoat29 @jmecn
- Fixed Railgun Ammo size @TomPlop
- Fixed bread and cheese ignoring being rotten @theMegaTech
### Translation updates
- Russian @DI-GitH + @nineex + @alexart2006
- Brazilian Portuguese @Redeix

View file

@ -864,8 +864,8 @@ function registerTFGFoodData(event) {
});
});
// Dark Stock
event.drinkable('tfg:dark_stock', (data) => {
// Rich Stock
event.drinkable('tfg:rich_stock', (data) => {
data.thirst(4);
data.effect("tfc:thirst", (effect) => {
effect.chance(0.2);

View file

@ -875,10 +875,10 @@ const registerTFGFluidTags = (event) => {
event.add('tfc:drinkables', 'tfg:brown_gravy')
event.add('tfc:any_drinkables', 'tfg:brown_gravy')
event.add('minecraft:water', 'tfg:dark_stock')
event.add('tfc:any_water', 'tfg:dark_stock')
event.add('tfc:drinkables', 'tfg:dark_stock')
event.add('tfc:any_drinkables', 'tfg:dark_stock')
event.add('minecraft:water', 'tfg:rich_stock')
event.add('tfc:any_water', 'tfg:rich_stock')
event.add('tfc:drinkables', 'tfg:rich_stock')
event.add('tfc:any_drinkables', 'tfg:rich_stock')
event.add('minecraft:water', 'tfg:light_stock')
event.add('tfc:any_water', 'tfg:light_stock')