Fix movement slow due to nutrition change

This commit is contained in:
Aronai Sieyes
2020-04-29 22:17:39 -04:00
parent 3eaa2ad9fa
commit ee40c8c1bd
@@ -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