From 412ee32d1c218dcbe9babd8165a2510ebd4a97bf Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Mon, 7 Sep 2015 17:01:34 +0930 Subject: [PATCH] Stops autotraitor grabbing minds from the lobby for antag roles. --- code/game/gamemodes/game_mode.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm index 4325cde9ce6..705c044e01b 100644 --- a/code/game/gamemodes/game_mode.dm +++ b/code/game/gamemodes/game_mode.dm @@ -515,6 +515,8 @@ var/global/list/additional_antag_types = list() for(var/mob/player in player_list) if(!player.client) continue + if(istype(player, /mob/new_player)) + continue if(!role || (player.client.prefs.be_special & role)) log_debug("[player.key] had [antag_id] enabled, so we are drafting them.") candidates |= player.mind