Fixes fishes not dying on dry land (#92493)

## About The Pull Request

- Closes #92474

## Changelog
🆑
fix: Fixed fishes not dying on dry land
/🆑
This commit is contained in:
SmArtKar
2025-08-11 20:16:16 +02:00
committed by GitHub
parent b980a06f06
commit 2f4c4a3e92
+1 -1
View File
@@ -1217,7 +1217,7 @@ GLOBAL_LIST_INIT(fish_compatible_fluid_types, list(
health_change *= seconds_per_tick
if(health_change < 0)
damage_fish(health_change)
damage_fish(-health_change)
else
repair_damage(health_change)