From 5793aeffa86b70a9fe84e36ac76e580f2da7421a Mon Sep 17 00:00:00 2001 From: Archie Date: Wed, 16 Jun 2021 17:13:58 -0300 Subject: [PATCH] Minor status tab fixes --- .../antagonists/disease/disease_mob.dm | 2 +- .../mob/living/simple_animal/slime/slime.dm | 25 +++++++++---------- 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/code/modules/antagonists/disease/disease_mob.dm b/code/modules/antagonists/disease/disease_mob.dm index ff935f32..9be21053 100644 --- a/code/modules/antagonists/disease/disease_mob.dm +++ b/code/modules/antagonists/disease/disease_mob.dm @@ -85,7 +85,7 @@ the new instance inside the host to be updated to the template's stats. /mob/camera/disease/get_status_tab_items() - + . = ..() if(freemove) . += "Host Selection Time: [round((freemove_end - world.time)/10)]s" else diff --git a/code/modules/mob/living/simple_animal/slime/slime.dm b/code/modules/mob/living/simple_animal/slime/slime.dm index 593ea1fa..23797cea 100644 --- a/code/modules/mob/living/simple_animal/slime/slime.dm +++ b/code/modules/mob/living/simple_animal/slime/slime.dm @@ -198,20 +198,19 @@ return 2 /mob/living/simple_animal/slime/get_status_tab_items() - if(..()) - - if(!docile) - . += "Nutrition: [nutrition]/[get_max_nutrition()]" - if(amount_grown >= SLIME_EVOLUTION_THRESHOLD) - if(is_adult) - . += "You can reproduce!" - else - . += "You can evolve!" - - if(stat == UNCONSCIOUS) - . += "You are knocked out by high levels of BZ!" + . = ..() + if(!docile) + . += "Nutrition: [nutrition]/[get_max_nutrition()]" + if(amount_grown >= SLIME_EVOLUTION_THRESHOLD) + if(is_adult) + . += "You can reproduce!" else - . += "Power Level: [powerlevel]" + . += "You can evolve!" + + if(stat == UNCONSCIOUS) + . += "You are knocked out by high levels of BZ!" + else + . += "Power Level: [powerlevel]" /mob/living/simple_animal/slime/adjustFireLoss(amount, updating_health = TRUE, forced = FALSE)