From b37f1c33a94fef2684d2c2ea0fcf8608b8d4d0b0 Mon Sep 17 00:00:00 2001 From: TerraGS <40574831+TerraGS@users.noreply.github.com> Date: Mon, 10 Jul 2023 17:06:46 -0500 Subject: [PATCH] Fixes explorer drone trader asking for "suit" (#76695) There was an oversight with one of the explorer drone trader events who wants /obj/item/clothing/suit/armor (base armor path) which currently doesn't have its own name so it gets referred to by the inherited name from /obj/item/clothing/suit in game. I've given it the proper generic name "armor" so this sort of thing won't happen in the future. Ran into a player doing explorer drone who tried using different types of clothing because the trader asked for "suit" and not even the admins online knew what it meant. This will clear things up and stop similar confusion in the event any code needs to refer to the base armor path by name. --- code/modules/clothing/suits/armor.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index 77ba98101cd..351d2754c84 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -1,4 +1,5 @@ /obj/item/clothing/suit/armor + name = "armor" icon = 'icons/obj/clothing/suits/armor.dmi' worn_icon = 'icons/mob/clothing/suits/armor.dmi' allowed = null