From 80daa821b7d9e45b51d83bf6546230b7cbebcdbc Mon Sep 17 00:00:00 2001 From: Bloop <13398309+vinylspiders@users.noreply.github.com> Date: Mon, 7 Oct 2024 04:02:40 -0400 Subject: [PATCH] Lets you continue to read paperwork after putting it into a folder (#87064) --- code/modules/paperwork/paper.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index 14202b1bf3b..eb7b2991852 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -367,7 +367,7 @@ return UI_CLOSE if(!user.can_read(src)) return UI_CLOSE - if(in_contents_of(/obj/machinery/door/airlock) || in_contents_of(/obj/item/clipboard)) + if(in_contents_of(/obj/machinery/door/airlock) || in_contents_of(/obj/item/clipboard) || in_contents_of(/obj/item/folder)) return UI_INTERACTIVE return ..()