Files
2024-04-13 18:06:52 -04:00

13 lines
342 B
Plaintext

/mob/living/silicon/pai/death(gibbed)
if(stat == DEAD)
return
set_stat(DEAD)
update_mobility()
update_sight()
wipe_fullscreens()
//New pAI's get a brand new mind to prevent meta stuff from their previous life. This new mind causes problems down the line if it's not deleted here.
remove_from_alive_mob_list()
ghostize()
qdel(src)