Examine change passthrough

This commit is contained in:
clusterfack
2015-01-08 03:04:52 -06:00
parent 87c12062ac
commit 4f63b6870d
83 changed files with 391 additions and 441 deletions

View File

@@ -60,7 +60,7 @@ var/const/MAX_ACTIVE_TIME = 400
return
switch(stat)
if(DEAD,UNCONSCIOUS)
user << "<span class='danger'>\The [src] is not moving.</span>"
user << "<span class='deadsay'>\The [src] is not moving.</span>"
if(CONSCIOUS)
user << "<span class='danger'>\The [src] seems active.</span>"
if (sterile)

View File

@@ -35,15 +35,15 @@
if(H.mind)
H.mind.transfer_to(brainmob)
brainmob << "\blue You feel slightly disoriented. That's normal when you're just a brain."
brainmob << "<span class='notice'>You feel slightly disoriented. That's normal when you're just a brain.</span>"
callHook("debrain", list(brainmob))
/obj/item/organ/brain/examine(mob/user)
..()
if(brainmob && brainmob.client)//if thar be a brain inside... the brain.
user << "You can feel the small spark of life still left in this one."
user << "<span class='notice'>You can feel the small spark of life still left in this one.</span>"
else
user << "This one seems particularly lifeless. Perhaps it will regain some of its luster later.."
user << "<span class='deadsay'>This one seems particularly lifeless. Perhaps it will regain some of its luster later..</span>"
/obj/item/organ/brain/removed(var/mob/living/target,var/mob/living/user)