60133f90ab
* Fixes gibs not being passed mob DNA * Cleanup, fixed map-placed gib spawners having no DNA
14 lines
327 B
Plaintext
14 lines
327 B
Plaintext
/mob/living/silicon/spawn_gibs()
|
|
new /obj/effect/gibspawner/robot(drop_location(), src)
|
|
|
|
/mob/living/silicon/spawn_dust()
|
|
new /obj/effect/decal/remains/robot(loc)
|
|
|
|
/mob/living/silicon/death(gibbed)
|
|
if(!gibbed)
|
|
emote("deathgasp")
|
|
diag_hud_set_status()
|
|
diag_hud_set_health()
|
|
update_health_hud()
|
|
return ..()
|