From 0edd848e922c244bb9e98aab75a6131e0124d807 Mon Sep 17 00:00:00 2001
From: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
Date: Sat, 30 Aug 2025 00:40:24 +0200
Subject: [PATCH] Don't network ZombifyOnDeathComponent and
ZombieImmuneComponent (#39963)
no networking
---
Content.Shared/Zombies/ZombieImmuneComponent.cs | 2 +-
Content.Shared/Zombies/ZombifyOnDeathComponent.cs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Content.Shared/Zombies/ZombieImmuneComponent.cs b/Content.Shared/Zombies/ZombieImmuneComponent.cs
index 18ad228363..483b1810f2 100644
--- a/Content.Shared/Zombies/ZombieImmuneComponent.cs
+++ b/Content.Shared/Zombies/ZombieImmuneComponent.cs
@@ -5,7 +5,7 @@ namespace Content.Shared.Zombies;
///
/// Entities with this component cannot be zombified.
///
-[RegisterComponent, NetworkedComponent]
+[RegisterComponent]
public sealed partial class ZombieImmuneComponent : Component
{
//still no
diff --git a/Content.Shared/Zombies/ZombifyOnDeathComponent.cs b/Content.Shared/Zombies/ZombifyOnDeathComponent.cs
index 138ea6e409..60029aca6f 100644
--- a/Content.Shared/Zombies/ZombifyOnDeathComponent.cs
+++ b/Content.Shared/Zombies/ZombifyOnDeathComponent.cs
@@ -5,7 +5,7 @@ namespace Content.Shared.Zombies;
///
/// Entities with this component zombify on death.
///
-[RegisterComponent, NetworkedComponent]
+[RegisterComponent]
public sealed partial class ZombifyOnDeathComponent : Component
{
//this is not the component you are looking for
--
2.51.2