From 2f40dcfcf452fbc574724eb2f7f8ffd98541692a 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 5b2459d3caf..912bef4449a 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -695,6 +695,7 @@ 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")