From 5610ed21f651f30bc3d6c9d0d60ac663d12ffbb6 Mon Sep 17 00:00:00 2001
From: QuoteFox <49098813+quotefox@users.noreply.github.com>
Date: Sat, 5 Dec 2020 03:56:44 +0000
Subject: [PATCH] Remove Height Examine text
Remove Height Examine text
---
code/modules/client/preferences.dm | 7 ++++---
code/modules/mob/living/carbon/human/examine.dm | 4 +++-
2 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm
index 7a3de0b6..9bf5eb64 100644
--- a/code/modules/client/preferences.dm
+++ b/code/modules/client/preferences.dm
@@ -96,7 +96,7 @@ GLOBAL_LIST_EMPTY(preferences_datums)
//H13
var/body_size = 100 //Body Size in percent
- var/can_get_preg = 0 //Body Size in percent
+ var/can_get_preg = 0 //preggers
var/datum/species/pref_species = new /datum/species/human() //Mutant race
var/list/features = list("mcolor" = "FFF",
@@ -433,11 +433,12 @@ GLOBAL_LIST_EMPTY(preferences_datums)
//HS13 body size
if (body_size > 0)
- dat += "Sprite Size: [body_size]%
"
+ dat += "Body Size: [body_size]%
"
if (body_size == null)
- dat += "Sprite Size: [body_size]%
"
+ dat += "Body Size: [body_size]%
"
mutant_colors = TRUE
+
if((EYECOLOR in pref_species.species_traits) && !(NOEYES in pref_species.species_traits))
if(!use_skintones && !mutant_colors)
diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm
index 9dbf731e..4912e959 100644
--- a/code/modules/mob/living/carbon/human/examine.dm
+++ b/code/modules/mob/living/carbon/human/examine.dm
@@ -113,6 +113,7 @@
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
@@ -121,6 +122,7 @@
else
dispSize = dispSize / 2
. += "[t_He] appears to be around [dispSize] feet tall."
+*/
//Can be picked up?
if(can_be_held)
@@ -162,7 +164,7 @@
. += "It appears that [t_his] brain is missing..."
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)