diff --git a/code/modules/mob/abstract/observer/observer.dm b/code/modules/mob/abstract/observer/observer.dm index a723a2acc5d..9413f9d6f08 100644 --- a/code/modules/mob/abstract/observer/observer.dm +++ b/code/modules/mob/abstract/observer/observer.dm @@ -747,6 +747,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp to_chat(src, "You are now visible!") invisibility = invisibility == INVISIBILITY_OBSERVER ? 0 : INVISIBILITY_OBSERVER + mouse_opacity = invisibility == INVISIBILITY_OBSERVER ? 0 : initial(mouse_opacity) // Give the ghost a cult icon which should be visible only to itself toggle_icon("cult") diff --git a/html/changelogs/geeves-no_ghost_clicks.yml b/html/changelogs/geeves-no_ghost_clicks.yml new file mode 100644 index 00000000000..53cdbe20aca --- /dev/null +++ b/html/changelogs/geeves-no_ghost_clicks.yml @@ -0,0 +1,6 @@ +author: Geeves + +delete-after: True + +changes: + - bugfix: "Cult ghosts can no longer be clicked on or hovered over, thus they cannot block clicks." \ No newline at end of file