From 2eabd28a060a324d4c3d9345fc718f0da571d132 Mon Sep 17 00:00:00 2001 From: TheSmallBlue Date: Sun, 8 Aug 2021 04:20:25 -0300 Subject: [PATCH] Fixes a small problem with the pathfinding path and the robot fix merge (#60751) --- code/modules/wiremod/components/action/pathfind.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/wiremod/components/action/pathfind.dm b/code/modules/wiremod/components/action/pathfind.dm index ff0e9b0d823..19068a3ed00 100644 --- a/code/modules/wiremod/components/action/pathfind.dm +++ b/code/modules/wiremod/components/action/pathfind.dm @@ -107,7 +107,6 @@ return else TIMER_COOLDOWN_START(parent, COOLDOWN_CIRCUIT_PATHFIND_DIF, different_path_cooldown) - popleft(path) // The first step is literally where we are right now, so we dont need it next_turf = get_turf(path[1]) output.set_output(next_turf) TIMER_COOLDOWN_START(parent, COOLDOWN_CIRCUIT_PATHFIND_SAME, same_path_cooldown)