From 53a01bfb469c7cc6c6a44b0cc94c9527d79be7e0 Mon Sep 17 00:00:00 2001 From: Whatstone <166147148+whatston3@users.noreply.github.com> Date: Tue, 17 Jun 2025 05:13:35 -0400 Subject: [PATCH] Fix adjacent north/south cable terminals breaking east/west HV cable (#38377) --- Content.Server/Power/Nodes/CableNode.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Content.Server/Power/Nodes/CableNode.cs b/Content.Server/Power/Nodes/CableNode.cs index b8c404e8e2..b0cbad4d48 100644 --- a/Content.Server/Power/Nodes/CableNode.cs +++ b/Content.Server/Power/Nodes/CableNode.cs @@ -52,7 +52,6 @@ namespace Content.Server.Power.Nodes { // Target tile has a terminal towards us, block the direction. terminalDirs |= 1 << (int) dir; - break; } } }