mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-02-04 13:20:15 +00:00
Nobody wants to help me fix these things so I'm just going to break them and see what happens.
15 lines
341 B
Plaintext
15 lines
341 B
Plaintext
/mob/living/death()
|
|
clear_fullscreens()
|
|
if(ai_holder)
|
|
ai_holder.go_sleep()
|
|
|
|
if(nest) //Ew.
|
|
if(istype(nest, /obj/structure/prop/nest))
|
|
var/obj/structure/prop/nest/N = nest
|
|
N.remove_creature(src)
|
|
if(istype(nest, /obj/structure/blob/factory))
|
|
var/obj/structure/blob/factory/F = nest
|
|
F.spores -= src
|
|
nest = null
|
|
. = ..()
|