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)