From 1e4572afd6ec296022ba141cb9bf4fc3517e2ac0 Mon Sep 17 00:00:00 2001 From: PsiOmega Date: Thu, 11 Dec 2014 19:09:57 +0100 Subject: [PATCH] Cuts down round-start summary. Now only lists entities with names and assignments. --- code/game/gamemodes/game_mode.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm index 68bf3935d8..c488f15f2e 100644 --- a/code/game/gamemodes/game_mode.dm +++ b/code/game/gamemodes/game_mode.dm @@ -154,7 +154,7 @@ var/pltext = "Player list:" for(var/mob/M in player_list) - if(M.mind) + if(M.mind && M.mind.name && (M.mind.assigned_role || M.mind.special_role)) pltext += print_player_lite(M.mind) if(M.client) clients++