mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-07-20 12:44:04 +01:00
mob: fix for say code "randomly" breaking
There was a runtiming check for mob.locs[1] in living/say, that would fail if a mob was in bluespace. Signed-off-by: Mloc-Argent <colmohici@gmail.com>
This commit is contained in:
@@ -108,7 +108,7 @@ var/list/department_radio_keys = list(
|
||||
if(M.stat == DEAD && client && (M.client.prefs.toggles & CHAT_GHOSTEARS))
|
||||
listening |= M
|
||||
continue
|
||||
if(M.locs[1] in hearturfs)
|
||||
if(M.loc && M.locs[1] in hearturfs)
|
||||
listening |= M
|
||||
|
||||
for(var/obj/O in objects)
|
||||
|
||||
Reference in New Issue
Block a user