Minor status tab fixes

This commit is contained in:
Archie
2021-06-16 17:13:58 -03:00
parent d42c8e09c0
commit 5793aeffa8
2 changed files with 13 additions and 14 deletions
@@ -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
@@ -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)