diff --git a/code/modules/client/preference/preferences.dm b/code/modules/client/preference/preferences.dm
index 836b3a54c3a..95b814b1177 100644
--- a/code/modules/client/preference/preferences.dm
+++ b/code/modules/client/preference/preferences.dm
@@ -299,7 +299,7 @@ GLOBAL_LIST_INIT(special_role_times, list(
active_character.f_style = "Shaved"
- if(!(S.bodyflags & ALL_RPARTS))
+ if(!(S.bodyflags & ALL_RPARTS) && (S.eyes != "blank_eyes") && !(S.bodyflags & NO_EYES))
dat += "Eyes: "
dat += "Color [color_square(active_character.e_colour)]
"
diff --git a/code/modules/mob/living/carbon/human/species/diona_species.dm b/code/modules/mob/living/carbon/human/species/diona_species.dm
index 1d0e3e2e021..b3c3d834576 100644
--- a/code/modules/mob/living/carbon/human/species/diona_species.dm
+++ b/code/modules/mob/living/carbon/human/species/diona_species.dm
@@ -17,6 +17,7 @@
As a gestalt entity, each nymph possesses an individual personality, yet they communicate collectively. \
Consequently, Diona often speak in a unique blend of first and third person, using 'We' and 'I' to reflect their unified yet multifaceted nature."
+ eyes = "blank_eyes"
species_traits = list(NO_HAIR)
inherent_traits = list(TRAIT_NOGERMS, TRAIT_NODECAY)
inherent_biotypes = MOB_ORGANIC | MOB_HUMANOID | MOB_PLANT