mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 04:26:03 +01:00
[MIRROR] [s] Dead people can no longer communicate with the living [MDB IGNORE] (#16878)
* [s] Dead people can no longer communicate with the living (#70446) * [s] Dead people can no longer communicate with the living Thought listener, through chicanery, could let you still pass through valid strings (and not fail) if you were a mob/dead/observer occupying your mob/living body. god dammit. check to make sure the fucker is dead. * [s] Dead people can no longer communicate with the living Co-authored-by: san7890 <the@san7890.com>
This commit is contained in:
@@ -48,7 +48,7 @@
|
||||
|
||||
var/mob/living/owner = bci.owner
|
||||
|
||||
if(!owner || !istype(owner) || !owner.client)
|
||||
if(!owner || !istype(owner) || !owner.client || (owner.stat >= UNCONSCIOUS))
|
||||
failure.set_output(COMPONENT_SIGNAL)
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user