From e3d638a516ccca03d908b3f70be8beb1424f5d99 Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Mon, 1 May 2023 20:40:30 -0400 Subject: [PATCH] Fix cutting/pulsing high-sec door wires (#15989) --- Content.Server/Wires/WiresSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Wires/WiresSystem.cs b/Content.Server/Wires/WiresSystem.cs index 4fcf1f03a2..e878a185bd 100644 --- a/Content.Server/Wires/WiresSystem.cs +++ b/Content.Server/Wires/WiresSystem.cs @@ -165,10 +165,10 @@ public sealed class WiresSystem : SharedWiresSystem else types.Add(actionType, 1); - d.Id = i; if (!d.Action.AddWire(d, types[actionType])) d.Action = null; } + d.Id = i; data.Add(id, new WireLayout.WireData(d.Letter, d.Color, i)); wires.WiresList[i] = wireSet[id]; -- 2.51.2