diff --git a/modular_citadel/code/_onclick/hud/stamina.dm b/modular_citadel/code/_onclick/hud/stamina.dm index a69e5aad13..1266e88158 100644 --- a/modular_citadel/code/_onclick/hud/stamina.dm +++ b/modular_citadel/code/_onclick/hud/stamina.dm @@ -11,7 +11,7 @@ /obj/screen/staminas/Click(location,control,params) if(isliving(usr)) var/mob/living/L = usr - to_chat(L, "You have [L.getStaminaLoss] stamina loss.
Your stamina buffer can take [stambuffer] stamina loss, and will use 50% of that stamina loss when recharging.
Your stamina buffer is [(100/stambuffer)-(bufferedstam*(100/stambuffer))]% full.
") + to_chat(L, "You have [L.getStaminaLoss()] stamina loss.
Your stamina buffer can take [L.stambuffer] stamina loss, and will use 50% of that stamina loss when recharging.
Your stamina buffer is [(100/L.stambuffer)-(L.bufferedstam*(100/L.stambuffer))]% full.
") /mob/living/carbon/human/proc/staminahudamount() if(stat == DEAD || recoveringstam)