From d0fd1df327197dac2cd013f6237f3e0edd5c074b Mon Sep 17 00:00:00 2001 From: Atermonera Date: Mon, 21 Sep 2020 09:47:42 -0700 Subject: [PATCH 1/2] Merge pull request #7668 from Mechoid/ReagentCyclingCycler Actually commit the reagent cycler's entire gimmick. --- code/modules/organs/internal/stomach.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/modules/organs/internal/stomach.dm b/code/modules/organs/internal/stomach.dm index c8e90d9f78..31adb758ae 100644 --- a/code/modules/organs/internal/stomach.dm +++ b/code/modules/organs/internal/stomach.dm @@ -64,4 +64,10 @@ if(owner && owner.stat != DEAD) owner.bodytemperature += round(owner.robobody_count * 0.25, 0.1) + if(ishuman(owner)) + var/mob/living/carbon/human/H = owner + + if(H.ingested?.total_volume && H.bloodstr) + H.ingested.trans_to_holder(H.bloodstr, rand(2,5)) + return