diff --git a/code/modules/client/preference_setup/general/03_body.dm b/code/modules/client/preference_setup/general/03_body.dm
index 9594aa3df9..1113d7ff4c 100644
--- a/code/modules/client/preference_setup/general/03_body.dm
+++ b/code/modules/client/preference_setup/general/03_body.dm
@@ -748,7 +748,15 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O
dat += "Language: [current_species.species_language]
"
dat += ""
if(current_species.spawn_flags & SPECIES_CAN_JOIN)
- dat += "Often present on human stations."
+ switch(current_species.rarity_value)
+ if(1 to 2)
+ dat += "Often present on human stations."
+ if(3 to 4)
+ dat += "Rarely present on human stations."
+ if(5)
+ dat += "Unheard of on human stations."
+ else
+ dat += "May be present on human stations."
if(current_species.spawn_flags & SPECIES_IS_WHITELISTED)
dat += "Whitelist restricted."
if(!current_species.has_organ[O_HEART])