mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-20 03:26:37 +01:00
Cleans up debug messages, prepares for delivery!
This commit is contained in:
@@ -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, "<span class='danger'>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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
..()
|
||||
|
||||
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user