From 86c6a60021496e16ed7838c35c3ee1414eb35b18 Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Mon, 6 Jun 2016 01:58:22 -0700 Subject: [PATCH] Fixes ghost images not having byond member iconstates (these icon states will still not show if the user requests they don't see such things, but now should show when they do.) --- code/modules/mob/dead/observer/observer.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index d1ea9204c6e..4b44e8ba77c 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -163,6 +163,7 @@ var/list/image/ghost_images_simple = list() //this is a list of all ghost images if(new_form) icon_state = new_form + ghostimage.icon_state = new_form if(icon_state in ghost_forms_with_directions_list) ghostimage_default.icon_state = new_form + "_nodir" //if this icon has dirs, the default ghostimage must use its nodir version or clients with the preference set to default sprites only will see the dirs else