From 26d911a643d49ad3ae4f55971a96821f7f32d08a Mon Sep 17 00:00:00 2001 From: TyrianTyrell <55641224+TyrianTyrell@users.noreply.github.com> Date: Thu, 4 Feb 2021 15:07:52 -0500 Subject: [PATCH] Update preferences.dm --- code/modules/client/preferences.dm | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 5e2a77934b..be1a842cf4 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -99,7 +99,6 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/be_random_body = 0 //whether we'll have a random body every round var/gender = MALE //gender of character (well duh) var/age = 30 //age of character - var/phobia = "Random" //phobia var/language = "Random" //bonus language var/choselanguage = "Random" //language appearance var/underwear = "Nude" //underwear type @@ -2320,15 +2319,6 @@ GLOBAL_LIST_EMPTY(preferences_datums) features["body_model"] = chosengender gender = chosengender - if("phobia") - var/chosephobia = input(user, "Select a phobia.", "Phobia", phobia) as null|anything in list("spiders", "space", "security", "clowns", "greytide", "lizards", - "skeletons", "snakes", "robots", "doctors", "authority", "the supernatural", - "aliens", "strangers", "birds", "falling", "anime", "mimes", "cats", "syndicate", - "eye","Random") - if(!chosephobia) - return - phobia = chosephobia - if("language") choselanguage = input(user, "Select a language.", "Language", language) as null|anything in list("Beachtongue","Draconic","Dwarven", "Chimpanzee","Space Sign Language","Random")