From 1f17561b46c093ff3a9c7e173f47269aa6ab7e8b Mon Sep 17 00:00:00 2001 From: deathride58 Date: Fri, 19 Oct 2018 12:53:07 -0400 Subject: [PATCH] fixes AOOC printing to players in the lobby (#7664) * fixes AOOC printing to players in the lobby * wait fuck no this is how you do it --- code/modules/client/verbs/aooc.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/client/verbs/aooc.dm b/code/modules/client/verbs/aooc.dm index dd6a802e11..90c0dc5a55 100644 --- a/code/modules/client/verbs/aooc.dm +++ b/code/modules/client/verbs/aooc.dm @@ -56,7 +56,7 @@ var/antaglisting = list() for(var/datum/mind/M in get_antag_minds(/datum/antagonist)) - if(!M.current || !M.current.client) + if(!M.current || !M.current.client || isnewplayer(M.current)) continue antaglisting |= M.current.client @@ -104,7 +104,7 @@ GLOBAL_VAR_INIT(antag_ooc_colour, AOOC_COLOR) var/antaglisting = list() //Only those who have access to AOOC need to know if it's enabled or not. for(var/datum/mind/M in get_antag_minds(/datum/antagonist)) - if(!M.current || !M.current.client) + if(!M.current || !M.current.client || isnewplayer(M.current)) continue antaglisting |= M.current.client