From 9ba3f5662e734628acefa40acfb7a57c97214512 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Tue, 31 Jan 2017 16:44:56 -0500 Subject: [PATCH] Fix some missing qdel hints --- code/game/objects/items/weapons/implants/implant_chem.dm | 2 +- code/game/objects/items/weapons/implants/implant_track.dm | 2 +- code/modules/holodeck/computer.dm | 8 ++++---- code/modules/orbit/orbit.dm | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/code/game/objects/items/weapons/implants/implant_chem.dm b/code/game/objects/items/weapons/implants/implant_chem.dm index 7d76005b31b..ce3ebc978fa 100644 --- a/code/game/objects/items/weapons/implants/implant_chem.dm +++ b/code/game/objects/items/weapons/implants/implant_chem.dm @@ -27,7 +27,7 @@ tracked_chem_implants += src /obj/item/weapon/implant/chem/Destroy() - ..() + . = ..() tracked_chem_implants -= src diff --git a/code/game/objects/items/weapons/implants/implant_track.dm b/code/game/objects/items/weapons/implants/implant_track.dm index a0d58369614..6bcef317204 100644 --- a/code/game/objects/items/weapons/implants/implant_track.dm +++ b/code/game/objects/items/weapons/implants/implant_track.dm @@ -10,7 +10,7 @@ tracked_implants += src /obj/item/weapon/implant/tracking/Destroy() - ..() + . = ..() tracked_implants -= src /obj/item/weapon/implanter/tracking/New() diff --git a/code/modules/holodeck/computer.dm b/code/modules/holodeck/computer.dm index 3f513f0a7db..de43b317afe 100644 --- a/code/modules/holodeck/computer.dm +++ b/code/modules/holodeck/computer.dm @@ -194,16 +194,16 @@ /obj/machinery/computer/holodeck/Destroy() emergency_shutdown() - ..() + return ..() /obj/machinery/computer/holodeck/emp_act(severity) emergency_shutdown() - ..() + return ..() /obj/machinery/computer/holodeck/ex_act(severity, target) emergency_shutdown() - ..() + return ..() /obj/machinery/computer/holodeck/blob_act(obj/structure/blob/B) emergency_shutdown() - ..() \ No newline at end of file + return ..() \ No newline at end of file diff --git a/code/modules/orbit/orbit.dm b/code/modules/orbit/orbit.dm index c4552155472..91932423d41 100644 --- a/code/modules/orbit/orbit.dm +++ b/code/modules/orbit/orbit.dm @@ -33,7 +33,7 @@ if (!orbiting.orbiters.len)//we are the last orbit, delete the list orbiting.orbiters = null orbiting = null - ..() + return ..() /datum/orbit/proc/Check(turf/targetloc) if (!orbiter)