From 33f4e674c72a063c2ed84b0904d0cd3679252c08 Mon Sep 17 00:00:00 2001 From: Jabak <163307958+Jabaks@users.noreply.github.com> Date: Mon, 23 Sep 2024 21:17:23 +0300 Subject: [PATCH] fix +1 days of suicide in the Gulag --- Content.Server/_Miracle/GulagSystem/GulagSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/_Miracle/GulagSystem/GulagSystem.cs b/Content.Server/_Miracle/GulagSystem/GulagSystem.cs index 2271221c7b..cb5f4ea15e 100644 --- a/Content.Server/_Miracle/GulagSystem/GulagSystem.cs +++ b/Content.Server/_Miracle/GulagSystem/GulagSystem.cs @@ -135,7 +135,7 @@ public sealed partial class GulagSystem : SharedGulagSystem return; } - if (ev.Primary is not KillPlayerSource source) + if (ev.Primary is not KillPlayerSource source || ev.Suicide) { return; }