Moving Zombie Components to Shared (#39791)

* Moving Comps to Shared

* Requested Changes
This commit is contained in:
Prole 2025-08-20 16:35:38 -07:00 committed by Vanessa
parent 228577676c
commit b277b5082d
3 changed files with 16 additions and 10 deletions

View File

@ -1,8 +0,0 @@
namespace Content.Server.Zombies
{
[RegisterComponent]
public sealed partial class ZombifyOnDeathComponent : Component
{
//this is not the component you are looking for
}
}

View File

@ -1,9 +1,11 @@
namespace Content.Server.Zombies;
using Robust.Shared.GameStates;
namespace Content.Shared.Zombies;
/// <summary>
/// Entities with this component cannot be zombified.
/// </summary>
[RegisterComponent]
[RegisterComponent, NetworkedComponent]
public sealed partial class ZombieImmuneComponent : Component
{
//still no

View File

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