From 2f4c4a3e92b0f2e4f6321f470dfa7190dc2071de Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Mon, 11 Aug 2025 20:16:16 +0200 Subject: [PATCH] Fixes fishes not dying on dry land (#92493) ## About The Pull Request - Closes #92474 ## Changelog :cl: fix: Fixed fishes not dying on dry land /:cl: --- code/modules/fishing/fish/_fish.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/fishing/fish/_fish.dm b/code/modules/fishing/fish/_fish.dm index 1ca10a290f6..cee4898000f 100644 --- a/code/modules/fishing/fish/_fish.dm +++ b/code/modules/fishing/fish/_fish.dm @@ -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)