diff --git a/code/modules/ruins/objects_and_mobs/necropolis_gate.dm b/code/modules/ruins/objects_and_mobs/necropolis_gate.dm index ba9ce6555a4..ffdf2ad6eb1 100644 --- a/code/modules/ruins/objects_and_mobs/necropolis_gate.dm +++ b/code/modules/ruins/objects_and_mobs/necropolis_gate.dm @@ -46,7 +46,8 @@ M << "Discordant whispers flood your mind in a thousand voices. Each one speaks your name, over and over. Something horrible has come." M << 'sound/creatures/legion_spawn.ogg' flash_color(M, flash_color = "#FF0000", flash_time = 50) - notify_ghosts("Legion has been summoned in the [get_area(src)]!", source = src, action = NOTIFY_ORBIT) + var/image/door_overlay = image('icons/effects/effects.dmi', "legiondoor") + notify_ghosts("Legion has been summoned in the [get_area(src)]!", source = src, alert_overlay = door_overlay, action = NOTIFY_JUMP) is_anyone_home = FALSE new/mob/living/simple_animal/hostile/megafauna/legion(get_step(src.loc, SOUTH)) diff --git a/icons/effects/effects.dmi b/icons/effects/effects.dmi index 125b02a8939..41ce12f5ea0 100644 Binary files a/icons/effects/effects.dmi and b/icons/effects/effects.dmi differ