From 843a7d1d46f211337820b2d5adef8925d71122c1 Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Sat, 4 Nov 2023 13:57:21 -0400 Subject: [PATCH] Fix ambuzol zombie damage (#21432) --- 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 51cbf34d99..3f971b970f 100644 --- a/Content.Server/Zombies/ZombieSystem.cs +++ b/Content.Server/Zombies/ZombieSystem.cs @@ -226,7 +226,7 @@ namespace Content.Server.Zombies } } - if (_mobState.IsIncapacitated(entity, mobState) && !HasComp(entity)) + if (_mobState.IsIncapacitated(entity, mobState) && !HasComp(entity) && !HasComp(entity)) { ZombifyEntity(entity); args.BonusDamage = -args.BaseDamage; -- 2.51.2