From d9b431ab916e36ab2e083a67a856ebbd279a3464 Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Mon, 26 Dec 2022 03:53:56 -0600 Subject: [PATCH] disposable --- code/modules/clothing/glasses/prescription_kit.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/clothing/glasses/prescription_kit.dm b/code/modules/clothing/glasses/prescription_kit.dm index 7b208da68b..0ad6419622 100644 --- a/code/modules/clothing/glasses/prescription_kit.dm +++ b/code/modules/clothing/glasses/prescription_kit.dm @@ -2,7 +2,7 @@ /obj/item/prescription_kit name = "prescription lens kit" - desc = "A kit containing all the needed tools and parts to develop and apply a self-modifying prescription lens overlay device to any eyewear." + desc = "A disposable kit containing all the needed tools and parts to develop and apply a self-modifying prescription lens overlay device to any eyewear." icon = 'icons/obj/device.dmi' icon_state = "modkit" @@ -19,3 +19,4 @@ user.visible_message(span_notice("[user] fits \the [target_glasses] with a prescription overlay device."), span_notice("You fit \the [target_glasses] with a prescription overlay device.")) target_glasses.prescribe() target_glasses.balloon_alert(user, "prescription fitted!") + qdel(src)