From d0f02a0832472a7b25d600cdc3b2514c10f56361 Mon Sep 17 00:00:00 2001 From: Shadowlight213 Date: Fri, 25 Nov 2016 15:16:50 -0800 Subject: [PATCH] nulls the physical var for the modular computer on destroy --- code/modules/modular_computers/computers/item/computer.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/modular_computers/computers/item/computer.dm b/code/modules/modular_computers/computers/item/computer.dm index c3cbeb378bd..2875b6bb022 100644 --- a/code/modules/modular_computers/computers/item/computer.dm +++ b/code/modules/modular_computers/computers/item/computer.dm @@ -65,6 +65,7 @@ CH.on_remove(src) CH.holder = null qdel(CH) + physical = null return ..()