From 5e0817a478420a1d32cef76a9f0bae19d89e4c46 Mon Sep 17 00:00:00 2001 From: alex-gh Date: Tue, 23 Apr 2019 20:47:21 +0200 Subject: [PATCH] Players in the lobby no longer see cult speak. --- code/game/gamemodes/cult/cult_comms.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/cult/cult_comms.dm b/code/game/gamemodes/cult/cult_comms.dm index 2fbbcdc413d..e93556ca843 100644 --- a/code/game/gamemodes/cult/cult_comms.dm +++ b/code/game/gamemodes/cult/cult_comms.dm @@ -39,7 +39,7 @@ my_message = "Harbringer of the Slaughter: [message]" else my_message = "[(ishuman(user) ? "Acolyte" : "Construct")] [user]: [message]" - for(var/mob/M in GLOB.mob_list) + for(var/mob/M in GLOB.player_list) if(iscultist(M)) to_chat(M, my_message) else if(M in GLOB.dead_mob_list)