From b939359e359f93d81c97d4a102a70480a95ce034 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Fri, 10 Apr 2020 09:16:19 -0700 Subject: [PATCH] Made my choice thing actually... do something (#11787) --- code/modules/antagonists/traitor/datum_traitor.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/traitor/datum_traitor.dm b/code/modules/antagonists/traitor/datum_traitor.dm index 338d135b4c..f7dc7ad6d1 100644 --- a/code/modules/antagonists/traitor/datum_traitor.dm +++ b/code/modules/antagonists/traitor/datum_traitor.dm @@ -38,8 +38,8 @@ weights[C] = weight var/choice = pickweightAllowZero(weights) if(!choice) - choice = GLOB.traitor_classes[TRAITOR_HUMAN] - set_traitor_kind(pickweightAllowZero(weights)) + choice = GLOB.traitor_classes[TRAITOR_HUMAN] // it's an "easter egg" + set_traitor_kind(choice) traitor_kind.weight *= 0.8 // less likely this round SSticker.mode.traitors += owner owner.special_role = special_role