From c69b3b5d04e362a11ac8a94cb7827d49f429a8ca Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Fri, 16 Mar 2018 00:10:43 -0400 Subject: [PATCH] POLARIS: UI Tweak involving species rarity --- .../modules/client/preference_setup/general/03_body.dm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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])