mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 04:22:39 +01:00
This has zero reason to exist in our code base. We have no procs or variables tied to this. I removed it to make future modifications cleaner. --------- Signed-off-by: Cody Brittain <1779662+Generalcamo@users.noreply.github.com>
15 lines
475 B
Plaintext
15 lines
475 B
Plaintext
/mob/living/carbon/brain/death(gibbed)
|
|
if(!gibbed && istype(container, /obj/item/mmi)) //If not gibbed but in a container.
|
|
container.icon_state = "mmi_dead"
|
|
return ..(gibbed,"beeps shrilly as the MMI flatlines!")
|
|
else
|
|
return ..(gibbed,"no message")
|
|
|
|
/mob/living/carbon/brain/gib()
|
|
if(container)
|
|
QDEL_NULL(container)//Gets rid of the MMI if there is one
|
|
if(loc)
|
|
if(istype(loc,/obj/item/organ/internal/brain))
|
|
qdel(loc)//Gets rid of the brain item
|
|
..(null,1)
|