From ee40c8c1bddf145d05516284afa5a6a05a807bd1 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Wed, 29 Apr 2020 22:17:39 -0400 Subject: [PATCH] Fix movement slow due to nutrition change --- code/modules/mob/living/carbon/human/human_movement.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index 225aada7e00..4644f9853fc 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -27,7 +27,7 @@ if(can_feel_pain()) if(halloss >= 10) tally += (halloss / 10) //halloss shouldn't slow you down if you can't even feel it - var/hungry = (MAX_NUTRITION - nutrition) / 5 + var/hungry = (500 - nutrition) / 5 //VOREStation Edit - Fixed 500 here instead of our huge MAX_NUTRITION if (hungry >= 70) tally += hungry/50 //VOREstation start