diff --git a/code/modules/clothing/masks/gasmask.dm b/code/modules/clothing/masks/gasmask.dm index ecfa04fe2ab..47362ed8a2e 100644 --- a/code/modules/clothing/masks/gasmask.dm +++ b/code/modules/clothing/masks/gasmask.dm @@ -86,6 +86,7 @@ desc = "A true prankster's facial attire. A clown is incomplete without his wig and mask." icon_state = "clown" item_state = "clown_hat" + species_fit = list("Vox") flags = FPRINT | TABLEPASS | MASKCOVERSMOUTH | MASKCOVERSEYES | BLOCK_GAS_SMOKE_EFFECT | MASKINTERNALS | BLOCKHAIR /obj/item/clothing/mask/gas/clown_hat/attack_self(mob/user) @@ -115,6 +116,7 @@ desc = "The traditional mime's mask. It has an eerie facial posture." icon_state = "mime" item_state = "mime" + species_fit = list("Vox") /obj/item/clothing/mask/gas/monkeymask name = "monkey mask" @@ -143,6 +145,7 @@ name = "owl mask" desc = "Twoooo!" icon_state = "owl" + species_fit = list("Vox") // ******************************************************************** @@ -273,3 +276,4 @@ // ******************************************************************** + diff --git a/code/modules/mob/living/carbon/species.dm b/code/modules/mob/living/carbon/species.dm index 930115dc694..b8bc3adc851 100644 --- a/code/modules/mob/living/carbon/species.dm +++ b/code/modules/mob/living/carbon/species.dm @@ -209,7 +209,7 @@ uniform_icons = 'icons/mob/species/vox/uniform.dmi' shoes_icons = 'icons/mob/species/vox/shoes.dmi' - wear_mask_icons = 'icons/mob/species/vox/mask.dmi' + wear_mask_icons = 'icons/mob/species/vox/masks.dmi' flags = NO_SCAN | IS_WHITELISTED | NO_BLOOD diff --git a/icons/mob/species/vox/mask.dmi b/icons/mob/species/vox/mask.dmi deleted file mode 100644 index 93a7f858961..00000000000 Binary files a/icons/mob/species/vox/mask.dmi and /dev/null differ diff --git a/icons/mob/species/vox/masks.dmi b/icons/mob/species/vox/masks.dmi new file mode 100644 index 00000000000..33a84118e26 Binary files /dev/null and b/icons/mob/species/vox/masks.dmi differ