From 7a9b23005de0e1d0150b472a0f6eefffd985aa04 Mon Sep 17 00:00:00 2001 From: Amy Date: Tue, 8 Dec 2020 19:33:12 -0600 Subject: [PATCH] Cleans up debug messages, prepares for delivery! --- code/modules/mob/living/carbon/human/update_icons.dm | 9 --------- code/modules/vore/appearance/update_icons_vr.dm | 1 - code/modules/vore/fluffstuff/custom_clothes_vr.dm | 6 ++++-- code/modules/vore/fluffstuff/custom_items_vr.dm | 2 +- 4 files changed, 5 insertions(+), 13 deletions(-) diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index 7401a5674a5..f47566279ad 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -473,25 +473,16 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() // VOREStation Edit - START var/icon/hair_acc_s = get_hair_accessory_overlay() var/image/hair_acc_s_image = null - to_chat(src, "checking for hair_acc_s...") if(hair_acc_s) - to_chat(src, "hair_acc_s found!") if(hair_accessory_style.ignores_lighting) - to_chat(src, "setting image and plane...") hair_acc_s_image = image(hair_acc_s) hair_acc_s_image.plane = PLANE_LIGHTING_ABOVE hair_acc_s_image.appearance_flags = appearance_flags - to_chat(src, "hair_acc_s found!") - to_chat(src, "checking for hair_acc_s_image...") if (hair_acc_s_image) - to_chat(src, "hair_acc_s_image found!") overlays_standing[HAIR_ACCESSORY_LAYER] = hair_acc_s_image - to_chat(src, "applying hair_acc_s!") apply_layer(HAIR_ACCESSORY_LAYER) return - to_chat(src, "no hair_acc_s_image! wat.") overlays_standing[HAIR_ACCESSORY_LAYER] = image(hair_acc_s, layer = BODY_LAYER+HAIR_ACCESSORY_LAYER) - to_chat(src, "applying hair_acc_s!") apply_layer(HAIR_ACCESSORY_LAYER) // VOREStation Edit - END diff --git a/code/modules/vore/appearance/update_icons_vr.dm b/code/modules/vore/appearance/update_icons_vr.dm index de44a0bd567..9185db35f38 100644 --- a/code/modules/vore/appearance/update_icons_vr.dm +++ b/code/modules/vore/appearance/update_icons_vr.dm @@ -25,7 +25,6 @@ var/global/list/wing_icon_cache = list() var/icon/hair_acc_s = icon(hair_accessory_style.icon, hair_accessory_style.icon_state) if(hair_accessory_style.do_colouration) hair_acc_s.Blend(rgb(src.r_ears, src.g_ears, src.b_ears), hair_accessory_style.color_blend_mode) - return hair_acc_s return null diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index 36e769a082e..9fde531d697 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -2251,13 +2251,15 @@ Departamental Swimsuits, for general use icon_override = 'icons/vore/custom_onmob_vr.dmi' item_state = "verie_hoodie" - + hoodtype = /obj/item/clothing/head/hood/winter/fluff/verie + var/owner = "vitoras" + /obj/item/clothing/suit/storage/hooded/fluff/verie/ToggleHood() // If you ain't the robutt, you probably don't have the hair style that the hooded icon states are made for. sorry! var/mob/living/carbon/human/H = src.loc - if (H.ckey != "vitoras") + if (H.ckey != owner) to_chat(H, "Strange... the hood doesn't go over your head no matter how you try to put it up.") return ..() diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index 37d9c95f51a..3b71faa6abe 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -1366,7 +1366,7 @@ icon_state = "verie_brush" w_class = ITEMSIZE_TINY - var/owner = "ryumi" + var/owner = "vitoras" /obj/item/weapon/fluff/verie/attack_self(mob/living/carbon/human/user) if (istype(user))