Merge pull request #10667 from Heroman3003/hairfix

Fixes promethean hair remaining transparent when transparency is disasbled
This commit is contained in:
Novacat
2021-06-17 15:47:28 -04:00
committed by GitHub
2 changed files with 3 additions and 2 deletions
@@ -175,4 +175,5 @@
var/obj/item/organ/external/L = limb
L.transparent = !L.transparent
visible_message("<span class='notice'>\The [src]'s interal composition seems to change.</span>")
update_icons_body()
update_icons_body()
update_hair()
@@ -472,7 +472,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon()
face_standing.Blend(hair_s, ICON_OVERLAY)
if(head_organ.nonsolid || head_organ.transparent)
if(head_organ.transparent) //VOREStation Edit: Prometheans are not ALWAYS transparent
face_standing += rgb(,,,120)
var/icon/ears_s = get_ears_overlay()