From 9a376f2ea0943561145bd710b45356abb01edbb5 Mon Sep 17 00:00:00 2001 From: "petethegoat@gmail.com" Date: Sun, 23 Sep 2012 22:27:48 +0000 Subject: [PATCH] Fix for the char setup overlays. As the mouth overlay is only used for lipstick now, we can ignore it completely for the preview. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4744 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/mob/new_player/preferences_setup.dm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/modules/mob/new_player/preferences_setup.dm b/code/modules/mob/new_player/preferences_setup.dm index bfbecc2de52..15356aa5d1a 100644 --- a/code/modules/mob/new_player/preferences_setup.dm +++ b/code/modules/mob/new_player/preferences_setup.dm @@ -192,9 +192,6 @@ datum/preferences hair_s.Blend(rgb(r_hair, g_hair, b_hair), ICON_ADD) eyes_s.Blend(hair_s, ICON_OVERLAY) - var/icon/mouth_s = new/icon("icon" = 'icons/mob/human_face.dmi', "icon_state" = "mouth_[g]_s") - eyes_s.Blend(mouth_s, ICON_OVERLAY) - var/datum/sprite_accessory/facial_hair_style = facial_hair_styles_list[f_style] if(facial_hair_style) var/icon/facial_s = new/icon("icon" = facial_hair_style.icon, "icon_state" = "[facial_hair_style.icon_state]_s") @@ -495,7 +492,6 @@ datum/preferences preview_icon_side = new(preview_icon, dir = WEST) del(preview_icon) - del(mouth_s) del(eyes_s) del(clothes_s)