From 9c3c9861abd519fdbb1226605149e30cf0baec46 Mon Sep 17 00:00:00 2001 From: LetterN <24603524+LetterN@users.noreply.github.com> Date: Sat, 27 Mar 2021 08:31:48 +0800 Subject: [PATCH] null-too-early --- code/game/machinery/constructable_frame.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/constructable_frame.dm b/code/game/machinery/constructable_frame.dm index c2855b4a46..8cdec2f324 100644 --- a/code/game/machinery/constructable_frame.dm +++ b/code/game/machinery/constructable_frame.dm @@ -208,8 +208,6 @@ new_machine.component_parts = list() circuit.forceMove(new_machine) - // TODO: make sleepers not shit out parts PROPERLY THIS TIME. - new_machine.circuit.moveToNullspace() new_machine.component_parts += circuit new_machine.circuit = circuit @@ -219,6 +217,8 @@ new_machine.RefreshParts() new_machine.on_construction() + // TODO: make sleepers not shit out parts PROPERLY THIS TIME. + new_machine.circuit.moveToNullspace() qdel(src) return