From cafd52ed92d4ab9587adcebafda1b9f3ad2ecab9 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 17 Oct 2021 02:41:01 +0200 Subject: [PATCH] [MIRROR] fixes probital ingest reaction [MDB IGNORE] (#8875) * fixes probital ingest reaction (#62095) bugs bad lot of chems were broken due to oversights during the stomach changes and other refactors this fixes one of them thought it was a proc problem at first, but no it was literally a one line change this entire time. * fixes probital ingest reaction Co-authored-by: lovegreenstuff <59631103+lovegreenstuff@users.noreply.github.com> --- .../reagents/chemistry/reagents/cat2_medicine_reagents.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/reagents/cat2_medicine_reagents.dm b/code/modules/reagents/chemistry/reagents/cat2_medicine_reagents.dm index 64dc605a9c8..5211cc5b1a4 100644 --- a/code/modules/reagents/chemistry/reagents/cat2_medicine_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/cat2_medicine_reagents.dm @@ -144,7 +144,7 @@ . = TRUE /datum/reagent/medicine/c2/probital/on_transfer(atom/A, methods=INGEST, trans_volume) - if(!(methods & INGEST) || !iscarbon(A)) + if(!(methods & INGEST) || (!iscarbon(A) && !istype(A, /obj/item/organ/stomach)) ) return A.reagents.remove_reagent(/datum/reagent/medicine/c2/probital, trans_volume * 0.05)