From 617768dd407f0191b84ef7a89d1742c73a8b5016 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Fri, 2 Sep 2022 15:09:15 -0700 Subject: [PATCH] Destructive analyzer no longer buy one get 49 free --- code/modules/research/destructive_analyzer.dm | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/code/modules/research/destructive_analyzer.dm b/code/modules/research/destructive_analyzer.dm index cc02e271f9..9c7ca5b999 100644 --- a/code/modules/research/destructive_analyzer.dm +++ b/code/modules/research/destructive_analyzer.dm @@ -84,15 +84,7 @@ Note: Must be placed within 3 tiles of the R&D Console reclaim_materials_from(thing) for(var/mob/M in thing) M.death() - if(istype(thing, /obj/item/stack/sheet)) - var/obj/item/stack/sheet/S = thing - if(S.amount > 1 && !innermode) - S.amount-- - loaded_item = S - else - qdel(S) - else - qdel(thing) + qdel(thing) if (!innermode) update_icon() return TRUE