From 79fd4f99dd8b74b2a92b42489db17486be87f4a5 Mon Sep 17 00:00:00 2001 From: Sirryan2002 <80364400+Sirryan2002@users.noreply.github.com> Date: Tue, 18 Jan 2022 04:22:57 -0500 Subject: [PATCH] [GBP: No Update] Fax Machines can no longer eat folders (#17341) --- code/modules/paperwork/faxmachine.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/paperwork/faxmachine.dm b/code/modules/paperwork/faxmachine.dm index 49c812399a0..0a427b2a50a 100644 --- a/code/modules/paperwork/faxmachine.dm +++ b/code/modules/paperwork/faxmachine.dm @@ -90,6 +90,9 @@ GLOBAL_LIST_EMPTY(fax_blacklist) else if(istype(item, /obj/item/paper) || istype(item, /obj/item/photo) || istype(item, /obj/item/paper_bundle)) ..() SStgui.update_uis(src) + else if(istype(item, /obj/item/folder)) + to_chat(user, "The [src] can't accept folders!") + return //early return so the parent proc doesn't suck up and items that a photocopier would take else return ..()