From a2e09a2f10ceace39fad2144a476057eb43d0a00 Mon Sep 17 00:00:00 2001 From: Dankman Date: Wed, 1 Mar 2017 16:59:13 -0500 Subject: [PATCH] Fixing one slight issue. I'm an idiot, forgot about garbage collecting. This fixes a slight issue in my previous PR that would have eventually resulted in a call of DEL if nobody rebuilt the console. --- code/modules/xenobio2/machinery/injector_computer.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/xenobio2/machinery/injector_computer.dm b/code/modules/xenobio2/machinery/injector_computer.dm index 254c2e9f399..2f0144d37b3 100644 --- a/code/modules/xenobio2/machinery/injector_computer.dm +++ b/code/modules/xenobio2/machinery/injector_computer.dm @@ -20,6 +20,7 @@ var/active /obj/machinery/computer/xenobio2/Destroy() + injector.computer = null ..() /obj/machinery/computer/xenobio2/attack_hand(mob/user)