diff --git a/code/__DEFINES/language.dm b/code/__DEFINES/language.dm
index 87a8805ca7e..2af0fd6ade8 100644
--- a/code/__DEFINES/language.dm
+++ b/code/__DEFINES/language.dm
@@ -23,3 +23,4 @@
#define AUTOHISS_OFF 0
#define AUTOHISS_BASIC 1
#define AUTOHISS_FULL 2
+#define AUTOHISS_NUM 3 //Number of auto-accent options.
diff --git a/code/modules/client/preference/preferences.dm b/code/modules/client/preference/preferences.dm
index f4bc656f914..b5250e49bd3 100644
--- a/code/modules/client/preference/preferences.dm
+++ b/code/modules/client/preference/preferences.dm
@@ -297,10 +297,10 @@ var/global/list/special_role_times = list( //minimum age (in days) for accounts
dat += "Voice: [speciesprefs ? "Wingdings" : "Normal"]
"
dat += "Secondary Language: [language]
"
if(S.autohiss_basic_map)
- dat += "Auto-accent: [autohiss_mode == 2 ? "Full" : (autohiss_mode == 1 ? "Basic" : "Off")]
"
+ dat += "Auto-accent: [autohiss_mode == AUTOHISS_FULL ? "Full" : (autohiss_mode == AUTOHISS_BASIC ? "Basic" : "Off")]
"
dat += "Blood Type: [b_type]
"
if(S.bodyflags & (HAS_SKIN_TONE|HAS_ICON_SKIN_TONE))
- dat += "Skin Tone: [species == "Vox" ? "[s_tone]" : "[-s_tone + 35]/220"]
"
+ dat += "Skin Tone: [S.bodyflags & HAS_ICON_SKIN_TONE ? "[s_tone]" : "[-s_tone + 35]/220"]
"
dat += "Disabilities: \[Set\]
"
dat += "Nanotrasen Relation: [nanotrasen_relation]
"
dat += "Set Flavor Text
"
@@ -1402,7 +1402,7 @@ var/global/list/special_role_times = list( //minimum age (in days) for accounts
b_type = new_b_type
if("hair")
- if(species in list("Human", "Unathi", "Tajaran", "Skrell", "Machine", "Vulpkanin", "Vox"))
+ if(species in list("Human", "Unathi", "Tajaran", "Skrell", "Machine", "Vulpkanin", "Vox")) //Species that have hair. (No HAS_HAIR flag)
var/input = "Choose your character's hair colour:"
var/new_hair = input(user, input, "Character Preference", rgb(r_hair, g_hair, b_hair)) as color|null
if(new_hair)
@@ -1610,7 +1610,7 @@ var/global/list/special_role_times = list( //minimum age (in days) for accounts
body_accessory = (new_body_accessory == "None") ? null : new_body_accessory
if("facial")
- if(species in list("Human", "Unathi", "Tajaran", "Skrell", "Machine", "Vulpkanin", "Vox"))
+ if(species in list("Human", "Unathi", "Tajaran", "Skrell", "Machine", "Vulpkanin", "Vox")) //Species that have facial hair. (No HAS_HAIR_FACIAL flag)
var/new_facial = input(user, "Choose your character's facial-hair colour:", "Character Preference", rgb(r_facial, g_facial, b_facial)) as color|null
if(new_facial)
r_facial = color2R(new_facial)
diff --git a/code/modules/mob/living/autohiss.dm b/code/modules/mob/living/autohiss.dm
index 0c2c6defeb8..da19b6a35b2 100644
--- a/code/modules/mob/living/autohiss.dm
+++ b/code/modules/mob/living/autohiss.dm
@@ -1,6 +1,3 @@
-#define AUTOHISS_NUM 3
-
-
/mob/living/proc/handle_autohiss(message, datum/language/L)
return message // no autohiss at this level