From 0699845118c34fbb4adde0aceadab71de2f2844d Mon Sep 17 00:00:00 2001 From: Chloe Carver-Brown Date: Tue, 16 Feb 2021 04:23:20 +0000 Subject: [PATCH] Makes the sec eyepatch flashproof and use glasses --- code/modules/clothing/glasses/hud.dm | 8 +------- code/modules/crafting/recipes/recipes_clothing.dm | 8 ++++---- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/code/modules/clothing/glasses/hud.dm b/code/modules/clothing/glasses/hud.dm index efb5afac..120e690c 100644 --- a/code/modules/clothing/glasses/hud.dm +++ b/code/modules/clothing/glasses/hud.dm @@ -120,12 +120,6 @@ hud_type = DATA_HUD_SECURITY_ADVANCED glass_colour_type = /datum/client_colour/glass_colour/red -/obj/item/clothing/glasses/hud/security/eyepatch - name = "security HUD eyepatch" - desc = "A heads-up display, in an eyepatch, that scans the humans in view and provides accurate data about their ID status and security records." - icon_state = "hudpatch" - item_state = "hudpatch" - /obj/item/clothing/glasses/hud/security/prescription name = "prescription security HUD" desc = "A heads-up display that scans the humans in view and provides accurate data about their ID status and security records. This one has a prescription lens so you can see the banana peal that slipped you." @@ -159,7 +153,7 @@ /obj/item/clothing/glasses/hud/security/sunglasses/eyepatch - name = "eyepatch HUD" + name = "Security eyepatch HUD" desc = "A heads-up display that connects directly to the optical nerve of the user, replacing the need for that useless eyeball." icon_state = "hudpatch" diff --git a/code/modules/crafting/recipes/recipes_clothing.dm b/code/modules/crafting/recipes/recipes_clothing.dm index d6ea0523..7b1d9944 100644 --- a/code/modules/crafting/recipes/recipes_clothing.dm +++ b/code/modules/crafting/recipes/recipes_clothing.dm @@ -45,20 +45,20 @@ /datum/crafting_recipe/hudeyesec name = "Security HUD eyepatch" - result = /obj/item/clothing/glasses/hud/security/eyepatch + result = /obj/item/clothing/glasses/hud/security/sunglasses/eyepatch time = 20 tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/hud/security = 1, + reqs = list(/obj/item/clothing/glasses/hud/security/sunglasses = 1, /obj/item/clothing/glasses/eyepatch = 1, /obj/item/stack/cable_coil = 5) category = CAT_CLOTHING /datum/crafting_recipe/hudeyesecremoval name = "Security HUD removal (Eyepatch)" - result = /obj/item/clothing/glasses/eyepatch + result = /obj/item/clothing/glasses/hud/security/sunglasses time = 20 tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/hud/security/eyepatch = 1) + reqs = list(/obj/item/clothing/glasses/hud/security/sunglasses/eyepatch = 1) category = CAT_CLOTHING /datum/crafting_recipe/hudsunsecremoval