diff --git a/Content.Server/Zombies/ZombieSystem.Transform.cs b/Content.Server/Zombies/ZombieSystem.Transform.cs index 155796481b..48954db4f1 100644 --- a/Content.Server/Zombies/ZombieSystem.Transform.cs +++ b/Content.Server/Zombies/ZombieSystem.Transform.cs @@ -63,7 +63,7 @@ public sealed partial class ZombieSystem [Dependency] private readonly NameModifierSystem _nameMod = default!; private static readonly ProtoId InvalidForGlobalSpawnSpellTag = "InvalidForGlobalSpawnSpell"; - + private static readonly ProtoId CannotSuicideTag = "CannotSuicide"; /// /// Handles an entity turning into a zombie when they die or go into crit /// @@ -294,5 +294,6 @@ public sealed partial class ZombieSystem //Need to prevent them from getting an item, they have no hands. // Also prevents them from becoming a Survivor. They're undead. _tag.AddTag(target, InvalidForGlobalSpawnSpellTag); + _tag.AddTag(target, CannotSuicideTag); } }