Skip to content

Commit

Permalink
Nanites transfer to bloodstream when ingested
Browse files Browse the repository at this point in the history
  • Loading branch information
WeNeedMorePhoron committed May 26, 2023
1 parent 439fa60 commit 9b5e7d6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions code/modules/reagents/reagents/nanites.dm
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@
/datum/reagent/nanites/consumed_amount(mob/living/carbon/M, alien, var/location)
if(will_occur(M, alien, location))
return ..()
else
return 0
else if(location == CHEM_INGEST)
holder.trans_to_mob(M, volume, CHEM_BLOOD) // Nanites dig through the stomach lining to get into the blood.
return 0

/datum/reagent/nanites/affect_blood(mob/living/carbon/M, alien, effect_multiplier)
eat_blood(M)
Expand Down

0 comments on commit 9b5e7d6

Please sign in to comment.