From ec5cb4d950e4dc4b2845c5ad2b0cd6eda7a2f0cf Mon Sep 17 00:00:00 2001 From: Yoshax Date: Sat, 22 Apr 2017 00:57:14 +0100 Subject: [PATCH] Does Aronai things --- code/modules/client/preference_setup/vore/01_ears.dm | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/code/modules/client/preference_setup/vore/01_ears.dm b/code/modules/client/preference_setup/vore/01_ears.dm index 50d9b71be7..f891cf552b 100644 --- a/code/modules/client/preference_setup/vore/01_ears.dm +++ b/code/modules/client/preference_setup/vore/01_ears.dm @@ -102,7 +102,7 @@ else if(href_list["ear_style"]) // Construct the list of names allowed for this user. - var/list/pretty_ear_styles = list("Normal") + var/list/pretty_ear_styles = list("Normal" = null) for(var/path in ear_styles_list) var/datum/sprite_accessory/ears/instance = ear_styles_list[path] if((!instance.ckeys_allowed) || (usr.ckey in instance.ckeys_allowed)) @@ -110,13 +110,8 @@ // Present choice to user var/selection = input(user, "Pick ears", "Character Preference") as null|anything in pretty_ear_styles - if(selection && selection != "Normal") - pref.ear_style = pretty_ear_styles[selection] - else - if(pref.ear_style) - return TOPIC_REFRESH_UPDATE_PREVIEW - else - pref.ear_style = null + pref.ear_style = pretty_ear_styles[selection] + return TOPIC_REFRESH_UPDATE_PREVIEW else if(href_list["tail_style"])