From 758b7160dc3010f63193ce9c23eec3c7de6ce776 Mon Sep 17 00:00:00 2001 From: "sieve32@gmail.com" Date: Fri, 5 Oct 2012 05:48:30 +0000 Subject: [PATCH] Gah, missed a and some bad indentation, sorry about that. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4812 316c924e-a436-60f5-8080-3fe189b3f50e --- .../mob/living/carbon/human/examine.dm | 70 +++++++++---------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 477846da44..956ad4778a 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -208,48 +208,48 @@ msg += " and [t_his] soul has departed" msg += "...\n" else//Brain is gone, doesn't matter if they are AFK or present - msg += "It appears that [t_his] brain is missing.\n" + msg += "It appears that [t_his] brain is missing...\n" - var/temp = getBruteLoss() //no need to calculate each of these twice - if(temp) - if(temp < 30) - msg += "[t_He] [t_has] minor bruising.\n" - else - msg += "[t_He] [t_has] severe bruising!\n" + var/temp = getBruteLoss() //no need to calculate each of these twice + if(temp) + if(temp < 30) + msg += "[t_He] [t_has] minor bruising.\n" + else + msg += "[t_He] [t_has] severe bruising!\n" - temp = getFireLoss() - if(temp) - if(temp < 30) - msg += "[t_He] [t_has] minor burns.\n" - else - msg += "[t_He] [t_has] severe burns!\n" + temp = getFireLoss() + if(temp) + if(temp < 30) + msg += "[t_He] [t_has] minor burns.\n" + else + msg += "[t_He] [t_has] severe burns!\n" - temp = getCloneLoss() - if(temp) - if(temp < 30) - msg += "[t_He] [t_has] minor genetic deformities.\n" - else - msg += "[t_He] [t_has] severe genetic deformities.\n" + temp = getCloneLoss() + if(temp) + if(temp < 30) + msg += "[t_He] [t_has] minor genetic deformities.\n" + else + msg += "[t_He] [t_has] severe genetic deformities.\n" - if(nutrition < 100) - msg += "[t_He] [t_is] severely malnourished.\n" - else if(nutrition >= 500) - if(usr.nutrition < 100) - msg += "[t_He] [t_is] plump and delicious looking - Like a fat little piggy. A tasty piggy.\n" - else - msg += "[t_He] [t_is] quite chubby.\n" + if(nutrition < 100) + msg += "[t_He] [t_is] severely malnourished.\n" + else if(nutrition >= 500) + if(usr.nutrition < 100) + msg += "[t_He] [t_is] plump and delicious looking - Like a fat little piggy. A tasty piggy.\n" + else + msg += "[t_He] [t_is] quite chubby.\n" - msg += "" + msg += "" - if(stat == UNCONSCIOUS) - msg += "[t_He] [t_is]n't responding to anything around [t_him] and seems to be asleep.\n" - else if(getBrainLoss() >= 60) - msg += "[t_He] [t_has] a stupid expression on [t_his] face.\n" + if(stat == UNCONSCIOUS) + msg += "[t_He] [t_is]n't responding to anything around [t_him] and seems to be asleep.\n" + else if(getBrainLoss() >= 60) + msg += "[t_He] [t_has] a stupid expression on [t_his] face.\n" - if(!key && brain_op_stage != 4) - msg += "[t_He] [t_is] totally catatonic. The stresses of life in deep-space must have been too much for [t_him]. Any recovery is unlikely\n" - else if(!client && brain_op_stage != 4) - msg += "[t_He] [t_has] a vacant, braindead stare...\n" + if(!key && brain_op_stage != 4) + msg += "[t_He] [t_is] totally catatonic. The stresses of life in deep-space must have been too much for [t_him]. Any recovery is unlikely\n" + else if(!client && brain_op_stage != 4) + msg += "[t_He] [t_has] a vacant, braindead stare...\n" if(digitalcamo) msg += "[t_He] [t_is] repulsively uncanny!\n"