From: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
Date: Fri, 29 Aug 2025 22:40:24 +0000 (+0200)
Subject: Don't network ZombifyOnDeathComponent and ZombieImmuneComponent (#39963)
X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=0edd848e922c244bb9e98aab75a6131e0124d807;p=space-station-14.git
Don't network ZombifyOnDeathComponent and ZombieImmuneComponent (#39963)
no networking
---
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