From 29b889a58f5e591680abdd4bb352c2844f890f52 Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Mon, 23 Jan 2023 11:23:12 -0600 Subject: [PATCH] implanter's implants gc fix (#20271) --- code/game/objects/items/weapons/implants/implanter.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/objects/items/weapons/implants/implanter.dm b/code/game/objects/items/weapons/implants/implanter.dm index a29e04483a4..889a51ba2f4 100644 --- a/code/game/objects/items/weapons/implants/implanter.dm +++ b/code/game/objects/items/weapons/implants/implanter.dm @@ -50,3 +50,7 @@ return imp = new implant_type() update_icon(UPDATE_ICON_STATE) + +/obj/item/implanter/Destroy() + QDEL_NULL(imp) + . = ..()