Merge pull request #10598 from Putnam3145/metabolic-synth-tweak

Made metabolic synthesis nanites stop if not fed
This commit is contained in:
Ghom
2020-01-23 16:38:39 +01:00
committed by GitHub

View File

@@ -220,7 +220,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 ..()