Revert "Remove Height Examine text"

This reverts commit 5610ed21f6.
This commit is contained in:
QuoteFox
2020-12-05 04:13:00 +00:00
parent 5610ed21f6
commit 6cd58a7c28
2 changed files with 4 additions and 7 deletions
+3 -4
View File
@@ -96,7 +96,7 @@ GLOBAL_LIST_EMPTY(preferences_datums)
//H13
var/body_size = 100 //Body Size in percent
var/can_get_preg = 0 //preggers
var/can_get_preg = 0 //Body Size in percent
var/datum/species/pref_species = new /datum/species/human() //Mutant race
var/list/features = list("mcolor" = "FFF",
@@ -433,12 +433,11 @@ GLOBAL_LIST_EMPTY(preferences_datums)
//HS13 body size
if (body_size > 0)
dat += "<b>Body Size:</b> <a href='?_src_=prefs;preference=bodysize;task=input'>[body_size]%</a><br>"
dat += "<b>Sprite Size:</b> <a href='?_src_=prefs;preference=bodysize;task=input'>[body_size]%</a><br>"
if (body_size == null)
dat += "<b>Body Size:</b> <a href='?_src_=prefs;preference=bodysize;task=input'>[body_size]%</a><br>"
dat += "<b>Sprite Size:</b> <a href='?_src_=prefs;preference=bodysize;task=input'>[body_size]%</a><br>"
mutant_colors = TRUE
if((EYECOLOR in pref_species.species_traits) && !(NOEYES in pref_species.species_traits))
if(!use_skintones && !mutant_colors)
@@ -113,7 +113,6 @@
if(!isnull(effects_exam))
. += effects_exam
/* Commented out for now, because people want customsizes.
//Approximate character height based on current sprite scale
if(dispSize % 2) // returns 1 or 0. 1 meaning the height is not exact and the code below will execute, 0 meaning the height is exact and the else will trigger.
dispSize = dispSize - 1 //makes it even
@@ -122,7 +121,6 @@
else
dispSize = dispSize / 2
. += "[t_He] appears to be around [dispSize] feet tall."
*/
//Can be picked up?
if(can_be_held)
@@ -164,7 +162,7 @@
. += "<span class='deadsay'>It appears that [t_his] brain is missing...</span>"
var/temp = getBruteLoss() //no need to calculate each of these twice
var/list/msg = list()
var/list/missing = list(BODY_ZONE_HEAD, BODY_ZONE_CHEST, BODY_ZONE_L_ARM, BODY_ZONE_R_ARM, BODY_ZONE_L_LEG, BODY_ZONE_R_LEG)