Un-nerfs recycling digestion material gains and fixes recycling upgrades. (#6907)

This commit is contained in:
Verkister
2023-09-03 18:50:35 +03:00
committed by GitHub
parent 1da6b8346d
commit edac9c8fc4
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -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
+1 -1
View File
@@ -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)