Network shared implant components (#18714)

This commit is contained in:
Vordenburg
2023-08-05 17:06:40 -04:00
committed by GitHub
parent 298623df4a
commit 4c39486f3c
4 changed files with 13 additions and 7 deletions

View File

@@ -1,4 +1,5 @@
using Robust.Shared.Containers;
using Robust.Shared.Containers;
using Robust.Shared.GameStates;
namespace Content.Shared.Implants.Components;
@@ -6,7 +7,7 @@ namespace Content.Shared.Implants.Components;
/// Added to an entity via the <see cref="SharedImplanterSystem"/> on implant
/// Used in instances where mob info needs to be passed to the implant such as MobState triggers
/// </summary>
[RegisterComponent]
[RegisterComponent, NetworkedComponent]
public sealed class ImplantedComponent : Component
{
public Container ImplantContainer = default!;