From cec9994bf85769b3b49e5824d2932f1d10d550db Mon Sep 17 00:00:00 2001 From: JaySparrow Date: Sun, 13 Sep 2020 04:36:04 -0500 Subject: [PATCH] Fix for the antag fix My brain is a raisin aaaaaaaaaa --- hyperstation/code/gamemode/traitor_lewd.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyperstation/code/gamemode/traitor_lewd.dm b/hyperstation/code/gamemode/traitor_lewd.dm index 02902c18..816a2df7 100644 --- a/hyperstation/code/gamemode/traitor_lewd.dm +++ b/hyperstation/code/gamemode/traitor_lewd.dm @@ -216,7 +216,7 @@ GLOBAL_LIST_INIT(hyper_special_roles, list( var/list/datum/mind/targets = list() var/list/datum/mind/owners = get_owners() for(var/datum/mind/candidate in SSticker.minds) - if (!(candidate in owners) && ishuman(candidate.current) && (candidate.current.client == TRUE)) + if (!(candidate in owners) && ishuman(candidate.current) && (candidate.current.client)) if(candidate.current.client.prefs.noncon == 1) targets += candidate if(targets.len > 0)