From 4aab1319adadd2eb28996bd5878670dc4a330f14 Mon Sep 17 00:00:00 2001 From: GitHubUser53123 <110841413+GitHubUser53123@users.noreply.github.com> Date: Mon, 13 Oct 2025 05:13:30 +0400 Subject: [PATCH] NonSpreaderZombieComponent prevents infection of crit mobs (#40857) prevent the most critical bug in the history of station space 14 --- Content.Server/Zombies/ZombieSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Zombies/ZombieSystem.cs b/Content.Server/Zombies/ZombieSystem.cs index 5107a87c2a..c182d53f44 100644 --- a/Content.Server/Zombies/ZombieSystem.cs +++ b/Content.Server/Zombies/ZombieSystem.cs @@ -264,7 +264,7 @@ namespace Content.Server.Zombies } } - if (_mobState.IsIncapacitated(entity, mobState) && !HasComp(entity) && !HasComp(entity)) + if (_mobState.IsIncapacitated(entity, mobState) && !HasComp(entity) && !HasComp(entity) && !HasComp(args.User)) { ZombifyEntity(entity); args.BonusDamage = -args.BaseDamage; -- 2.51.2