From e3df1e38ac8fcbfaa00439a24a95ec83c6becf3a Mon Sep 17 00:00:00 2001 From: TankTheBirb <96669534+TankTheBirb@users.noreply.github.com> Date: Mon, 1 Sep 2025 15:15:27 -0400 Subject: [PATCH] fixes water movement traits (#18399) big patchy somehow broke this, but now it's fixy again. --- code/modules/mob/living/carbon/human/human_movement.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index 1497c85559..8ece68a364 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -209,7 +209,7 @@ var/turf_move_cost = T.movement_cost if(istype(T, /turf/simulated/floor/water)) if(species.water_movement) - turf_move_cost = 0 + turf_move_cost = CLAMP(turf_move_cost + species.water_movement, HUMAN_LOWEST_SLOWDOWN, 15) if(istype(shoes, /obj/item/clothing/shoes)) var/obj/item/clothing/shoes/feet = shoes if(istype(feet) && feet.water_speed)