From edac9c8fc49f27da7dc88283f0244640ecd4715a Mon Sep 17 00:00:00 2001 From: Verkister Date: Sun, 3 Sep 2023 18:50:35 +0300 Subject: [PATCH] Un-nerfs recycling digestion material gains and fixes recycling upgrades. (#6907) --- code/modules/recycling/recycling.dm | 4 ++++ code/modules/vore/eating/belly_obj_ch.dm | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/code/modules/recycling/recycling.dm b/code/modules/recycling/recycling.dm index 356de4fbfe..63a5fe444a 100644 --- a/code/modules/recycling/recycling.dm +++ b/code/modules/recycling/recycling.dm @@ -8,6 +8,10 @@ var/negative_dir = null //VOREStation Addition var/hand_fed = TRUE //CHOMPAdd +/obj/machinery/recycling/Initialize() //CHOMPAdd + . = ..() + default_apply_parts() + /obj/machinery/recycling/process() return PROCESS_KILL // these are all stateful diff --git a/code/modules/vore/eating/belly_obj_ch.dm b/code/modules/vore/eating/belly_obj_ch.dm index 4448b2c54a..b25d2a11e7 100644 --- a/code/modules/vore/eating/belly_obj_ch.dm +++ b/code/modules/vore/eating/belly_obj_ch.dm @@ -521,7 +521,7 @@ var/obj/item/stack/S = O trash = S.amount for(var/mat in O.matter) - modified_mats[mat] = O.matter[mat] * 0.5 * trash + modified_mats[mat] = O.matter[mat] * trash for(var/obj/item/debris_pack/digested/D in contents) if(istype(D)) for(var/mat in modified_mats)