From cc14eb7bd1c9e69737d96a3377ffa7689925a92c Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Thu, 12 Oct 2023 23:53:47 -0700 Subject: [PATCH] Update say_vr.dm --- code/modules/mob/say_vr.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm index 28045d65b526..eada12f52c64 100644 --- a/code/modules/mob/say_vr.dm +++ b/code/modules/mob/say_vr.dm @@ -109,6 +109,8 @@ var/mob/M = vismob if(istype(vismob, /mob/observer)) continue + if(M.stat == DEAD) + continue // get mobs and objs in view fast is shitty; say refactor will deal with that M.show_message(message, SAYCODE_TYPE_ALWAYS) for(var/visobj in vis_objs)