19 lines
565 B
C#
19 lines
565 B
C#
using Content.Shared.Construction;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Content.Server.Construction.Completions
|
|
{
|
|
[UsedImplicitly]
|
|
[DataDefinition]
|
|
public sealed partial class SetAnchor : IGraphAction
|
|
{
|
|
[DataField("value")] public bool Value { get; private set; } = true;
|
|
|
|
public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager)
|
|
{
|
|
var transformSystem = entityManager.System<SharedTransformSystem>();
|
|
transformSystem.TrySetAnchor(uid, Value);
|
|
}
|
|
}
|
|
}
|