diff --git a/Content.Server/Zombies/ZombifyOnDeathSystem.cs b/Content.Server/Zombies/ZombifyOnDeathSystem.cs index f802b0ca3a..be3d437b8b 100644 --- a/Content.Server/Zombies/ZombifyOnDeathSystem.cs +++ b/Content.Server/Zombies/ZombifyOnDeathSystem.cs @@ -108,7 +108,8 @@ namespace Content.Server.Zombies //This is needed for stupid entities that fuck up combat mode component //in an attempt to make an entity not attack. This is the easiest way to do it. RemComp(target); - AddComp(target); + var combat = AddComp(target); + combat.IsInCombatMode = true; var vocal = EnsureComp(target); var scream = new SoundCollectionSpecifier ("ZombieScreams");