From 8a3790489ccc0eecf0bccd9d38291bf2ae20f6f1 Mon Sep 17 00:00:00 2001 From: thatonefirebird <129115325+Essiuun@users.noreply.github.com> Date: Sun, 18 Jun 2023 01:46:25 -0400 Subject: [PATCH] fixes loadout bug with donatornoahcloak (#5623) ## About The Pull Request It showed up in the loadout somewhere it shouldn't, this fixes it. ## Why It's Good For The Game Fixing a bug of my own creation. ## Changelog :cl: fix: donatornoahcloak loadout bug. /:cl: --- code/modules/donatorreskins/donatorclothing.dm | 6 +++--- .../preferences/preference_setup/loadout/loadout_donator.dm | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/donatorreskins/donatorclothing.dm b/code/modules/donatorreskins/donatorclothing.dm index ff235874449..af6b47fa76f 100644 --- a/code/modules/donatorreskins/donatorclothing.dm +++ b/code/modules/donatorreskins/donatorclothing.dm @@ -273,7 +273,7 @@ icon = 'icons/obj/clothing/donatorclothing.dmi' icon_override = 'icons/mob/clothing/donatorclothing.dmi' -/obj/item/clothing/suit/storage/hooded/tajaran/cloak/donatornoahcloak //...yeah. I need the hood code to use it, so it's odd. +/obj/item/clothing/suit/storage/hooded/donatornoahcloak //...yeah. I need the hood code to use it, so it's odd. name = "refurbished Adhomian cloak" desc = "A snow-white Adhomian cloak bearing hand-sewn edges and additional fur built into the inside for warmth. Bears an unusual symbol, a four-pointed star with a small center sphere." icon_state = "noah_cloak" @@ -281,11 +281,11 @@ body_cover_flags = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS min_cold_protection_temperature = TN60C cold_protection = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS - hoodtype = /obj/item/clothing/head/hood/tajaran/cloak/donatornoahcloak + hoodtype = /obj/item/clothing/head/hood/donatornoahcloak icon = 'icons/mob/clothing/donatorclothing.dmi' icon_override = 'icons/mob/clothing/donatorclothing.dmi' -/obj/item/clothing/head/hood/tajaran/cloak/donatornoahcloak +/obj/item/clothing/head/hood/donatornoahcloak name = "refurbished Adhomian hood" desc = "A snow-white hood to go with a similar Adhomian cloak." icon_state = "noah_cloakhood" diff --git a/code/modules/preferences/preference_setup/loadout/loadout_donator.dm b/code/modules/preferences/preference_setup/loadout/loadout_donator.dm index 0cbe75d4a26..8eed7128dc9 100644 --- a/code/modules/preferences/preference_setup/loadout/loadout_donator.dm +++ b/code/modules/preferences/preference_setup/loadout/loadout_donator.dm @@ -273,5 +273,5 @@ /datum/gear/donator/noahcloak name = "Noah's Cloak" - path = /obj/item/clothing/suit/storage/hooded/tajaran/cloak/donatornoahcloak + path = /obj/item/clothing/suit/storage/hooded/donatornoahcloak ckeywhitelist = list("rainbyplays")