From a3859901bdf4c86b382769860385bae34af053e1 Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Sat, 4 Nov 2023 18:44:09 -0400 Subject: [PATCH] Fix accidental crayon graffiti when writing on paper (#21445) --- Content.Server/Paper/PaperSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/Paper/PaperSystem.cs b/Content.Server/Paper/PaperSystem.cs index 553bcaa0a2..0b19daa8a1 100644 --- a/Content.Server/Paper/PaperSystem.cs +++ b/Content.Server/Paper/PaperSystem.cs @@ -107,6 +107,7 @@ namespace Content.Server.Paper paperComp.Mode = PaperAction.Write; _uiSystem.TryOpen(uid, PaperUiKey.Key, actor.PlayerSession); UpdateUserInterface(uid, paperComp, actor.PlayerSession); + args.Handled = true; return; } -- 2.51.2