From 0571b8a962835510c65653acedca6a22439a021e Mon Sep 17 00:00:00 2001 From: LT3 <83487515+lessthnthree@users.noreply.github.com> Date: Thu, 16 Jul 2026 09:01:02 -0700 Subject: [PATCH] Successful stamping closes paper UI (#96983) ## About The Pull Request Automatically closes the paper UI when you successfully apply a stamp. ## Why It's Good For The Game QOL not having to manually close each paper's window as you're stamping manifests, forms, etc. ## Changelog :cl: LT3 qol: Stamping a paper now automatically closes the paper UI /:cl: --- code/modules/paperwork/paper.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index e0589b3c185..bdba1f80a84 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -693,6 +693,7 @@ GAME_VERB_SRC(/obj/item/paper, rename, usr, "Rename paper", null) playsound(src, 'sound/items/handling/standard_stamp.ogg', 50, vary = TRUE) update_appearance() + ui.close() update_static_data_for_all_viewers() return TRUE if("add_text")