Dock device link port (#27646)

* Add dock device link port

* SpawnAndDeleteAllEntitiesInTheSameSpot moment

* The fuck is TryStopNukeOpsFromConstantlyFailing??

Do we have a new test that can randomly fail?
This commit is contained in:
0x6273
2024-05-06 05:59:01 +02:00
committed by GitHub
parent 1ecc36b049
commit c7a5587e07
5 changed files with 55 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
using Content.Shared.DeviceLinking;
using Robust.Shared.Prototypes;
namespace Content.Server.Shuttles.Components;
[RegisterComponent]
public sealed partial class DockingSignalControlComponent : Component
{
/// <summary>
/// Output port that is high while docked.
/// </summary>
[DataField]
public ProtoId<SourcePortPrototype> DockStatusSignalPort = "DockStatus";
}