From 2468f31cbb9bd494ff6cfd93d676e53f1a80dbb7 Mon Sep 17 00:00:00 2001 From: David Winters Date: Sun, 11 Apr 2021 18:35:31 -0400 Subject: [PATCH] oops --- .../preference_setup/loadout/loadout_fluffitems_vr.dm | 2 +- code/modules/vore/fluffstuff/custom_clothes_vr.dm | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm index 17656aae896..dfa73a8eb1a 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm @@ -736,7 +736,7 @@ character_name = list("Scylla Casmus") /datum/gear/fluff/kiyoshi_cloak - path = /obj/item/clothing/accessory/poncho/fluff/cloakglowing + path = /obj/item/clothing/accessory/poncho/roles/cloak/fluff/cloakglowing display_name = "glowing cloak" ckeywhitelist = list("pastelprincedan") character_name = list("Kiyoshi Maki", "Masumi Maki") diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index 14d75133bb2..74dae36ba4f 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -2288,7 +2288,7 @@ Departamental Swimsuits, for general use body_parts_covered = UPPER_TORSO|LOWER_TORSO|FEET|ARMS|HANDS //PastelPrinceDan: Kiyoshi Maki -/obj/item/clothing/accessory/poncho/fluff/cloakglowing +/obj/item/clothing/accessory/poncho/roles/cloak/fluff/cloakglowing name = "glowing cloak" desc = "A fancy cloak with a RGB LED color strip along the trim, cycling through the colors of the rainbow." icon = 'icons/vore/custom_clothes_vr.dmi' @@ -2298,17 +2298,17 @@ Departamental Swimsuits, for general use icon_override = 'icons/vore/custom_onmob_vr.dmi' var/is_dark = FALSE -/obj/item/clothing/accessory/poncho/fluff/cloakglowing/equipped() +/obj/item/clothing/accessory/poncho/roles/cloak/fluff/cloakglowing/equipped() ..() var/mob/living/carbon/human/H = loc if(istype(H) && H.wear_suit == src) icon_override = 'icons/vore/custom_onmob_vr.dmi' update_clothing_icon() -/obj/item/clothing/accessory/poncho/fluff/cloakglowing/dropped() +/obj/item/clothing/accessory/poncho/roles/cloak/fluff/cloakglowing/dropped() icon_override = 'icons/vore/custom_onmob_vr.dmi' -/obj/item/clothing/accessory/poncho/fluff/cloakglowing/proc/colorswap(mob/user) +/obj/item/clothing/accessory/poncho/roles/cloak/fluff/cloakglowing/proc/colorswap(mob/user) if(user.canmove && !user.stat) src.is_dark = !src.is_dark if (src.is_dark) @@ -2323,7 +2323,7 @@ Departamental Swimsuits, for general use to_chat(user, "The polychromic plates in your cloak activate, turning it white.") has_suit.update_clothing_icon() -/obj/item/clothing/accessory/poncho/fluff/cloakglowing/verb/color_verb() +/obj/item/clothing/accessory/poncho/roles/cloak/fluff/cloakglowing/verb/color_verb() set name = "Swap color" set category = "Object" set src in usr