From: themias <89101928+themias@users.noreply.github.com> Date: Sat, 4 Nov 2023 17:57:21 +0000 (-0400) Subject: Fix ambuzol zombie damage (#21432) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=843a7d1d46f211337820b2d5adef8925d71122c1;p=space-station-14.git Fix ambuzol zombie damage (#21432) --- 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;