From 53600002f692d7eb524c35a16caadbf8d4d9b5d6 Mon Sep 17 00:00:00 2001 From: vincibrv Date: Fri, 28 Feb 2025 15:54:24 +0100 Subject: [PATCH] no bonebreak from fall --- code/game/turfs/turf.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm index fea425962111..d91fb88fae5c 100644 --- a/code/game/turfs/turf.dm +++ b/code/game/turfs/turf.dm @@ -91,7 +91,7 @@ if(above) above.multiz_new(dir=DOWN) - + if(below) below.multiz_new(dir=UP) @@ -180,7 +180,7 @@ var/turf/below = SSmapping.get_turf_below(src) if(above) above.multiz_del(dir=DOWN) - + if(below) below.multiz_del(dir=UP) @@ -947,9 +947,9 @@ GLOBAL_LIST_INIT(blacklisted_automated_baseturfs, typecacheof(list( /turf/proc/on_throw_end(atom/movable/thrown_atom) return TRUE -/turf/proc/z_impact(mob/living/victim, height, stun_modifier = 1, damage_modifier = 1, fracture_modifier = 1) +/turf/proc/z_impact(mob/living/victim, height, stun_modifier = 1, damage_modifier = 1, fracture_modifier = 0) if(ishuman_strict(victim)) - var/mob/living/carbon/human/human_victim = victim + var/mob/living/carbon/human/human_victim = victim if (stun_modifier > 0) human_victim.KnockDown(5 * height * stun_modifier) human_victim.Stun(5 * height * stun_modifier)