Skip to content

Commit

Permalink
probably fix #12750
Browse files Browse the repository at this point in the history
  • Loading branch information
pali6 committed Jan 14, 2023
1 parent 743f59f commit 93bee53
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/mob/dead/observer.dm
Expand Up @@ -330,7 +330,8 @@
if(istype(get_area(src),/area/afterlife))
qdel(src)

respawn_controller.subscribeNewRespawnee(our_ghost.ckey)
if(!istype(src, /mob/dead))
respawn_controller.subscribeNewRespawnee(our_ghost.ckey)
var/datum/respawnee/respawnee = global.respawn_controller.respawnees[our_ghost.ckey]
if(istype(respawnee) && istype(our_ghost, /mob/dead/observer)) // target observers don't have huds
respawnee.update_time_display()
Expand Down

0 comments on commit 93bee53

Please sign in to comment.