Shuttle collisions now deal damage to the chest and head for human mobs, gib all other mobs.

This commit is contained in:
bgobandit
2016-02-27 18:13:33 -05:00
parent 978a18d476
commit 82de663bc8
+5 -2
View File
@@ -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)