mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 03:57:48 +01:00
FIXES EYES
This commit is contained in:
@@ -22,7 +22,7 @@
|
||||
if(stat)
|
||||
to_chat(src, "<span class='warning'>You must be awake and standing to perform this action!</span>")
|
||||
return
|
||||
var/obj/item/organ/external/head/vr/H = organs_by_name[BP_HEAD]
|
||||
var/obj/item/organ/external/head/H = organs_by_name[BP_HEAD]
|
||||
if(!H)
|
||||
to_chat(src, "<span class='warning'>You don't seem to have a head!</span>")
|
||||
return
|
||||
|
||||
@@ -90,7 +90,7 @@
|
||||
has_limbs = list(
|
||||
BP_TORSO = list("path" = /obj/item/organ/external/chest),
|
||||
BP_GROIN = list("path" = /obj/item/organ/external/groin),
|
||||
BP_HEAD = list("path" = /obj/item/organ/external/head/vr/shadekin),
|
||||
BP_HEAD = list("path" = /obj/item/organ/external/head/shadekin),
|
||||
BP_L_ARM = list("path" = /obj/item/organ/external/arm),
|
||||
BP_R_ARM = list("path" = /obj/item/organ/external/arm/right),
|
||||
BP_L_LEG = list("path" = /obj/item/organ/external/leg),
|
||||
|
||||
@@ -487,7 +487,7 @@
|
||||
has_limbs = list(
|
||||
BP_TORSO = list("path" = /obj/item/organ/external/chest),
|
||||
BP_GROIN = list("path" = /obj/item/organ/external/groin),
|
||||
BP_HEAD = list("path" = /obj/item/organ/external/head/vr/werebeast),
|
||||
BP_HEAD = list("path" = /obj/item/organ/external/head/werebeast),
|
||||
BP_L_ARM = list("path" = /obj/item/organ/external/arm),
|
||||
BP_R_ARM = list("path" = /obj/item/organ/external/arm/right),
|
||||
BP_L_LEG = list("path" = /obj/item/organ/external/leg),
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
has_limbs = list(
|
||||
BP_TORSO = list("path" = /obj/item/organ/external/chest),
|
||||
BP_GROIN = list("path" = /obj/item/organ/external/groin),
|
||||
BP_HEAD = list("path" = /obj/item/organ/external/head/vr/sergal),
|
||||
BP_HEAD = list("path" = /obj/item/organ/external/head/sergal),
|
||||
BP_L_ARM = list("path" = /obj/item/organ/external/arm),
|
||||
BP_R_ARM = list("path" = /obj/item/organ/external/arm/right),
|
||||
BP_L_LEG = list("path" = /obj/item/organ/external/leg),
|
||||
@@ -486,7 +486,7 @@ datum/species/harpy
|
||||
has_limbs = list(
|
||||
BP_TORSO = list("path" = /obj/item/organ/external/chest/crewkin),
|
||||
BP_GROIN = list("path" = /obj/item/organ/external/groin/crewkin),
|
||||
BP_HEAD = list("path" = /obj/item/organ/external/head/vr/crewkin),
|
||||
BP_HEAD = list("path" = /obj/item/organ/external/head/crewkin),
|
||||
BP_L_ARM = list("path" = /obj/item/organ/external/arm/crewkin),
|
||||
BP_R_ARM = list("path" = /obj/item/organ/external/arm/right/crewkin),
|
||||
BP_L_LEG = list("path" = /obj/item/organ/external/leg/crewkin),
|
||||
|
||||
@@ -531,7 +531,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon()
|
||||
if(!head_organ.eye_icon)
|
||||
return
|
||||
|
||||
var/icon/eyes_icon = new/icon(head_organ.eye_icon_location, head_organ.eye_icon)
|
||||
var/icon/eyes_icon = new/icon(head_organ.eye_icon_location, head_organ.eye_icon) //VOREStation Edit
|
||||
if(eyes)
|
||||
eyes_icon.Blend(rgb(eyes.eye_colour[1], eyes.eye_colour[2], eyes.eye_colour[3]), ICON_ADD)
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user