Fixes a bitflag check to work right.

This will probably let you have your hair in character setup again
Haven't tested it though, no time yet
This commit is contained in:
Crazylemon
2015-12-08 22:01:51 -08:00
parent b0be9925d3
commit 67366fb5d1
@@ -804,7 +804,7 @@ datum/preferences
else if(backbag == 3 || backbag == 4)
clothes_s.Blend(new /icon('icons/mob/back.dmi', "satchel"), ICON_OVERLAY)
if(!current_species.bodyflags & NO_EYES)
if(!(current_species.bodyflags & NO_EYES))
preview_icon.Blend(eyes_s, ICON_OVERLAY)
if(underwear_s)
preview_icon.Blend(underwear_s, ICON_OVERLAY)