From 059ec098ea4db8e370e094503ed2929b7a9d9c34 Mon Sep 17 00:00:00 2001 From: Will <7099514+Willburd@users.noreply.github.com> Date: Wed, 4 Feb 2026 19:02:44 -0500 Subject: [PATCH] Forbid forensics items from lathe recycling (#19132) * forbid these * forbid these --- 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 2231e075561..1224c8abd2a 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)