Skip to content

Commit

Permalink
Metabolic Synthesis Nanite Program works on hungrier people now. (#1840)
Browse files Browse the repository at this point in the history
* Update utility.dm

* Halves Nutrition Use.
  • Loading branch information
Uristthedorf authored Jun 6, 2024
1 parent ba30327 commit c32bc8c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,12 +250,12 @@
if(!iscarbon(host_mob))
return FALSE
var/mob/living/carbon/C = host_mob
if(C.nutrition <= NUTRITION_LEVEL_WELL_FED)
if(C.nutrition <= NUTRITION_LEVEL_STARVING) //It's the nanite programmer's job to make sure nanites don't starve the host, also allows a saboteur to starve everyone who has nanites.
return FALSE
return ..()

/datum/nanite_program/metabolic_synthesis/active_effect()
host_mob.adjust_nutrition(-0.5)
host_mob.adjust_nutrition(-0.25)

/datum/nanite_program/access
name = "Subdermal ID"
Expand Down

0 comments on commit c32bc8c

Please sign in to comment.