Remove superseded machine linking code (#18244)
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
using Content.Server.DeviceLinking.Systems;
|
||||
using Content.Shared.DeviceLinking;
|
||||
using Content.Shared.MachineLinking;
|
||||
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
||||
|
||||
namespace Content.Server.DeviceLinking.Components;
|
||||
@@ -15,19 +14,19 @@ public sealed class EdgeDetectorComponent : Component
|
||||
/// <summary>
|
||||
/// Name of the input port.
|
||||
/// </summary>
|
||||
[DataField("inputPort", customTypeSerializer: typeof(PrototypeIdSerializer<SourcePortPrototype>))]
|
||||
[DataField("inputPort", customTypeSerializer: typeof(PrototypeIdSerializer<SinkPortPrototype>))]
|
||||
public string InputPort = "Input";
|
||||
|
||||
/// <summary>
|
||||
/// Name of the rising edge output port.
|
||||
/// </summary>
|
||||
[DataField("outputHighPort", customTypeSerializer: typeof(PrototypeIdSerializer<TransmitterPortPrototype>))]
|
||||
[DataField("outputHighPort", customTypeSerializer: typeof(PrototypeIdSerializer<SourcePortPrototype>))]
|
||||
public string OutputHighPort = "OutputHigh";
|
||||
|
||||
/// <summary>
|
||||
/// Name of the falling edge output port.
|
||||
/// </summary>
|
||||
[DataField("outputLowPort", customTypeSerializer: typeof(PrototypeIdSerializer<TransmitterPortPrototype>))]
|
||||
[DataField("outputLowPort", customTypeSerializer: typeof(PrototypeIdSerializer<SourcePortPrototype>))]
|
||||
public string OutputLowPort = "OutputLow";
|
||||
|
||||
// Initial state
|
||||
|
||||
Reference in New Issue
Block a user