From 82de663bc8470cd72c1f28e2c3ffba8d11f9fb1c Mon Sep 17 00:00:00 2001 From: bgobandit Date: Sat, 27 Feb 2016 18:13:33 -0500 Subject: [PATCH] Shuttle collisions now deal damage to the chest and head for human mobs, gib all other mobs. --- code/modules/shuttle/shuttle.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm index 13b3d500a17..cf4ff2e8faa 100644 --- a/code/modules/shuttle/shuttle.dm +++ b/code/modules/shuttle/shuttle.dm @@ -455,12 +455,15 @@ for(var/turf/T in L) for(var/atom/movable/AM in T) if(ismob(AM)) - if(istype(AM, /mob/living)) + if(istype(AM, /mob/living/carbon/human)) var/mob/living/M = AM M.Paralyse(10) - M.take_organ_damage(80) + M.apply_damage(60, BRUTE, "chest") + M.apply_damage(60, BRUTE, "head") M.anchored = 0 else + var/mob/M = AM + M.gib() continue if(!AM.anchored)