From 6b908752c58f7e3ad1ae1a363ae35dbd356084ef Mon Sep 17 00:00:00 2001 From: Staykeu Date: Tue, 2 Jan 2024 11:01:22 -0500 Subject: [PATCH] fixed a duplicate on my part --- code/modules/clothing/glasses/glasses.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/glasses.dm index eee4fc5a0662..b5345795644e 100644 --- a/code/modules/clothing/glasses/glasses.dm +++ b/code/modules/clothing/glasses/glasses.dm @@ -94,8 +94,6 @@ var/obj/item/clothing/glasses/offhand = user.get_inactive_hand() if(istype(offhand) && !offhand.prescription) if(tgui_alert(user, "Do you wish to take out the prescription lenses and put them in [offhand]?", "Insert Prescription Lenses", list("Yes", "No")) == "Yes") - if(QDELETED(src) || offhand != user.get_inactive_hand()) - return FALSE if(QDELETED(src) || offhand != user.get_inactive_hand()) return FALSE offhand.prescription = TRUE