Moving Zombie Components to Shared (#39791)
* Moving Comps to Shared * Requested Changes
This commit is contained in:
@@ -1,8 +0,0 @@
|
||||
namespace Content.Server.Zombies
|
||||
{
|
||||
[RegisterComponent]
|
||||
public sealed partial class ZombifyOnDeathComponent : Component
|
||||
{
|
||||
//this is not the component you are looking for
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
12
Content.Shared/Zombies/ZombifyOnDeathComponent.cs
Normal file
12
Content.Shared/Zombies/ZombifyOnDeathComponent.cs
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user