diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index b1d264c925c..37e2f588fc3 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -1223,7 +1223,7 @@ datum/preferences continue if(gender == FEMALE && S.gender == MALE) continue - if( !(species in S.species_allowed)) + if(!(species in S.species_allowed)) continue valid_sockstyles[sockstyle] = socks_list[sockstyle] var/new_socks = input(user, "Choose your character's socks:", "Character Preference") as null|anything in valid_sockstyles diff --git a/code/modules/mob/new_player/sprite_accessories.dm b/code/modules/mob/new_player/sprite_accessories.dm index 5cc722bb7fd..5a27db7e008 100644 --- a/code/modules/mob/new_player/sprite_accessories.dm +++ b/code/modules/mob/new_player/sprite_accessories.dm @@ -1272,7 +1272,7 @@ name = "Nude" icon_state = null gender = NEUTER - species_allowed = list("Human","Unathi","Diona","Grey","Machine","Tajaran","Vulpakanin","Slime People","Skellington") + species_allowed = list("Human","Unathi","Diona","Grey","Machine","Tajaran","Vulpakanin","Slime People","Skellington","Vox") /datum/sprite_accessory/socks/white_norm @@ -1410,7 +1410,7 @@ species_allowed = list("Vox") /datum/sprite_accessory/socks/vox_stripped - name = "Vox Stripped" + name = "Vox Striped" icon_state = "vox_white" gender = NEUTER species_allowed = list("Vox") @@ -1439,9 +1439,9 @@ gender = NEUTER species_allowed = list("Vox") -/datum/sprite_accessory/socks/vox_stripped_thigh - name = "Vox Thigh-high Stripped" - icon_state = "vox_strippedTH" +/datum/sprite_accessory/socks/vox_striped_thigh + name = "Vox Thigh-high Striped" + icon_state = "vox_stripedTH" gender = NEUTER species_allowed = list("Vox") diff --git a/icons/mob/underwear.dmi b/icons/mob/underwear.dmi index 6c36fd0651b..d91548da434 100644 Binary files a/icons/mob/underwear.dmi and b/icons/mob/underwear.dmi differ