mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 04:26:03 +01:00
Shuttle collisions now deal damage to the chest and head for human mobs, gib all other mobs.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user