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 Content.Shared.Tools;
|
||||
using Robust.Shared.Audio;
|
||||
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
||||
@@ -36,19 +35,19 @@ public sealed class LogicGateComponent : Component
|
||||
/// <summary>
|
||||
/// Name of the first input port.
|
||||
/// </summary>
|
||||
[DataField("inputPortA", customTypeSerializer: typeof(PrototypeIdSerializer<SourcePortPrototype>))]
|
||||
[DataField("inputPortA", customTypeSerializer: typeof(PrototypeIdSerializer<SinkPortPrototype>))]
|
||||
public string InputPortA = "InputA";
|
||||
|
||||
/// <summary>
|
||||
/// Name of the second input port.
|
||||
/// </summary>
|
||||
[DataField("inputPortB", customTypeSerializer: typeof(PrototypeIdSerializer<SourcePortPrototype>))]
|
||||
[DataField("inputPortB", customTypeSerializer: typeof(PrototypeIdSerializer<SinkPortPrototype>))]
|
||||
public string InputPortB = "InputB";
|
||||
|
||||
/// <summary>
|
||||
/// Name of the output port.
|
||||
/// </summary>
|
||||
[DataField("outputPort", customTypeSerializer: typeof(PrototypeIdSerializer<TransmitterPortPrototype>))]
|
||||
[DataField("outputPort", customTypeSerializer: typeof(PrototypeIdSerializer<SourcePortPrototype>))]
|
||||
public string OutputPort = "Output";
|
||||
|
||||
// Initial state
|
||||
|
||||
Reference in New Issue
Block a user