From c49f4dcfcb8e25d414c0554cd7f1f6d2463aae6c Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Thu, 5 Feb 2026 10:33:21 -0700 Subject: [PATCH] [MIRROR] Forbid forensics items from lathe recycling (#12366) Co-authored-by: Will <7099514+Willburd@users.noreply.github.com> --- code/datums/components/materials/remote_materials.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/datums/components/materials/remote_materials.dm b/code/datums/components/materials/remote_materials.dm index 2231e07556..1224c8abd2 100644 --- a/code/datums/components/materials/remote_materials.dm +++ b/code/datums/components/materials/remote_materials.dm @@ -162,8 +162,11 @@ handles linking back and forth. if(istype(target, /obj/item/multitool)) return OnMultitool(source, user, target) + if(istype(target, /obj/item/forensics)) + return FALSE + if(mat_container_flags & MATCONTAINER_NO_INSERT) - return + return FALSE if(istype(target, /obj/item/storage/bag/sheetsnatcher)) return mat_container.OnSheetSnatcher(source, target, user)