Merge pull request #15449 from Putnam3145/gib-podpeople

Allows pod people to be made using other fluids
This commit is contained in:
silicons
2022-01-22 04:34:59 -08:00
committed by GitHub
5 changed files with 66 additions and 74 deletions
+2 -2
View File
@@ -168,9 +168,9 @@
R.clear_reagents()
R.maximum_volume = fluid_max_volume
if(fluid_id)
R.add_reagent(fluid_id,amount)
R.add_reagent(fluid_id,amount, owner.get_blood_data())
else if(linked_organ?.fluid_id)
R.add_reagent(linked_organ.fluid_id,amount)
R.add_reagent(linked_organ.fluid_id,amount, owner.get_blood_data())
return TRUE
/obj/item/organ/genital/proc/update_link()