From a96fe98781b889c53796abf1fc0c30f0a6ea906c Mon Sep 17 00:00:00 2001 From: Contrabang <91113370+Contrabang@users.noreply.github.com> Date: Wed, 5 Oct 2022 21:31:45 -0400 Subject: [PATCH] the fix to the fix to the fix --- code/game/objects/items/weapons/implants/implantcase.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/implants/implantcase.dm b/code/game/objects/items/weapons/implants/implantcase.dm index caea9ea5ad7..f5abdaaf290 100644 --- a/code/game/objects/items/weapons/implants/implantcase.dm +++ b/code/game/objects/items/weapons/implants/implantcase.dm @@ -12,10 +12,12 @@ materials = list(MAT_GLASS = 500) var/obj/item/implant/imp - var/implant_type = /obj/item/implant + var/obj/item/implant/implant_type /obj/item/implantcase/Initialize(mapload) . = ..() + if(!implant_type) + return imp = new implant_type(src) update_state()