Files
tbd-station-14/Content.Server/Construction/Completions/MachineFrameRegenerateProgress.cs
2021-06-09 22:19:39 +02:00

27 lines
731 B
C#

#nullable enable
using System.Threading.Tasks;
using Content.Server.Construction.Components;
using Content.Shared.Construction;
using JetBrains.Annotations;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
namespace Content.Server.Construction.Completions
{
[UsedImplicitly]
[DataDefinition]
public class MachineFrameRegenerateProgress : IGraphAction
{
public async Task PerformAction(IEntity entity, IEntity? user)
{
if (entity.Deleted)
return;
if (entity.TryGetComponent<MachineFrameComponent>(out var machineFrame))
{
machineFrame.RegenerateProgress();
}
}
}
}