From e975ab9e05cc9c59711bbbfc762240d458dde522 Mon Sep 17 00:00:00 2001 From: YPOQ <30683121+YPOQ@users.noreply.github.com> Date: Fri, 5 Jul 2019 13:27:30 -0600 Subject: [PATCH] Fixes simple animal zombies not looking like zombies --- code/modules/client/preferences.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index f6d22b41d1f..065d3acd9d8 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -783,7 +783,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(job_preferences[j] == JP_HIGH) job_preferences[j] = JP_MEDIUM //technically break here - + job_preferences[job.title] = level return TRUE @@ -801,7 +801,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) to_chat(user, "UpdateJobPreference - desired level was not a number. Please notify coders!") ShowChoices(user) return - + var/jpval = null switch(desiredLvl) if(3) @@ -816,7 +816,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) jpval = null else jpval = JP_LOW - + SetJobPreferenceLevel(job, jpval) SetChoices(user) @@ -1471,7 +1471,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) auto_fit_viewport = !auto_fit_viewport if(auto_fit_viewport && parent) parent.fit_viewport() - + if("widescreenpref") widescreenpref = !widescreenpref user.client.change_view(CONFIG_GET(string/default_view)) @@ -1539,7 +1539,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/datum/species/chosen_species chosen_species = pref_species.type - if(!(pref_species.id in GLOB.roundstart_races) && !(pref_species.id in (CONFIG_GET(keyed_list/roundstart_no_hard_check)))) + if(roundstart_checks && !(pref_species.id in GLOB.roundstart_races) && !(pref_species.id in (CONFIG_GET(keyed_list/roundstart_no_hard_check)))) chosen_species = /datum/species/human pref_species = new /datum/species/human save_character()