diff --git a/code/modules/client/preference_setup/antagonism/02_candidacy.dm b/code/modules/client/preference_setup/antagonism/02_candidacy.dm index d922f10669..3ff1aad3fd 100644 --- a/code/modules/client/preference_setup/antagonism/02_candidacy.dm +++ b/code/modules/client/preference_setup/antagonism/02_candidacy.dm @@ -16,6 +16,7 @@ var/global/list/special_roles = list( //keep synced with the defines BE_* in set "diona" = 1, // 12 "mutineer" = 1, // 13 "loyalist" = 1, // 14 + "GHOST" = 0, // CHOMPEDIT - add seperate section for ghost roles "pAI candidate" = 1, // 15 //VOREStation Add "lost drone" = 1, // 16 @@ -51,7 +52,12 @@ var/global/list/special_roles = list( //keep synced with the defines BE_* in set . += "Be [i]: \[BANNED]
" else . += "Be [i]: [pref.be_special&(1<
" - n++ + // CHOMPEdit Start - Add header for Ghost roles section + if(i == "GHOST") + . += "

GHOST ROLES - Roles that are joinable as ghosts, but not true antags.


" + else + //CHOMPEdit End + n++ /datum/category_item/player_setup_item/antagonism/candidacy/OnTopic(var/href,var/list/href_list, var/mob/user) if(href_list["be_special"])