Made metabolic synthesis stop if not fed

This commit is contained in:
Putnam
2020-01-18 03:47:40 -08:00
parent c1e9618757
commit 81cd277db2
@@ -206,7 +206,7 @@
if(!iscarbon(host_mob))
return FALSE
var/mob/living/carbon/C = host_mob
if(C.nutrition <= NUTRITION_LEVEL_STARVING)
if(C.nutrition <= NUTRITION_LEVEL_FED)
return FALSE
return ..()