Don't network ZombifyOnDeathComponent and ZombieImmuneComponent (#39963)

no networking
This commit is contained in:
slarticodefast 2025-08-30 00:40:24 +02:00 committed by Vanessa
parent a58797e94a
commit 395d4e7680
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ namespace Content.Shared.Zombies;
/// <summary>
/// Entities with this component cannot be zombified.
/// </summary>
[RegisterComponent, NetworkedComponent]
[RegisterComponent]
public sealed partial class ZombieImmuneComponent : Component
{
//still no

View File

@ -5,7 +5,7 @@ namespace Content.Shared.Zombies;
/// <summary>
/// Entities with this component zombify on death.
/// </summary>
[RegisterComponent, NetworkedComponent]
[RegisterComponent]
public sealed partial class ZombifyOnDeathComponent : Component
{
//this is not the component you are looking for