diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/negative_ch.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/negative_ch.dm index 1e8e3c49b7..64f8a57b87 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/negative_ch.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/negative_ch.dm @@ -53,7 +53,7 @@ special_env = TRUE /datum/trait/low_blood_sugar/handle_environment_special(var/mob/living/carbon/human/H) - if(H.nutrition < 200 && prob(5)) + if((H.nutrition < 200) && prob(5)) if(H.nutrition > 150) to_chat(H,"You start to feel noticeably weak as your stomach rumbles, begging for more food. Maybe you should eat something to keep your blood sugar up") else if(H.nutrition > 100) @@ -62,11 +62,11 @@ to_chat(H,"You're feeling very weak and lightheaded, and your stomach continously rumbles at you. You really need to eat something!") else to_chat(H,"You're feeling extremely weak and lightheaded. You feel as though you might pass out any moment and your stomach is screaming for food by now! You should really find something to eat!") - if(H.nutrition < 150 && prob(15)) + if((H.nutrition < 150) && prob(15)) H.Confuse(20) - if(H.nutrition < 100 && prob(30)) + if((H.nutrition < 100) && prob(30)) H.hallucination = max(50,H.hallucination+10) - if(H.nutrition < 50 && prob(10)) + if((H.nutrition < 50) && prob(10)) H.drowsyness = max(100,H.drowsyness+30) /datum/trait/blindness