From 28709fdc723872a90e2ce8e8af546db1a38bdf5b Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sun, 2 Feb 2025 11:39:02 -0800 Subject: [PATCH] Fixes debug assertion thrown when chopping logs (#34814) --- Content.Server/Botany/Systems/LogSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/Botany/Systems/LogSystem.cs b/Content.Server/Botany/Systems/LogSystem.cs index a0639e3708..3d415635be 100644 --- a/Content.Server/Botany/Systems/LogSystem.cs +++ b/Content.Server/Botany/Systems/LogSystem.cs @@ -45,5 +45,6 @@ public sealed class LogSystem : EntitySystem } QueueDel(uid); + args.Handled = true; } } -- 2.51.2