* Moving Comps to Shared
* Requested Changes
+++ /dev/null
-namespace Content.Server.Zombies
-{
- [RegisterComponent]
- public sealed partial class ZombifyOnDeathComponent : Component
- {
- //this is not the component you are looking for
- }
-}
-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
--- /dev/null
+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
+}