From dbc26cce387cbf97b391eb985e39bcdf140c2be9 Mon Sep 17 00:00:00 2001 From: Daylight <18598676+Daylight2@users.noreply.github.com> Date: Sun, 2 Jun 2024 00:57:44 +0300 Subject: [PATCH] Highlight tweaks (#25551) --- code/modules/events/event.dm | 2 +- code/modules/events/tear.dm | 2 +- code/modules/power/engines/singularity/singularity.dm | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/events/event.dm b/code/modules/events/event.dm index 2ac68d47855..8d1d4e03da3 100644 --- a/code/modules/events/event.dm +++ b/code/modules/events/event.dm @@ -197,7 +197,7 @@ //Only called once. /datum/event/proc/announce_to_ghosts(atom/atom_of_interest) if(atom_of_interest) - notify_ghosts("[name] has an object of interest: [atom_of_interest]!", title = "Something's Interesting!", source = atom_of_interest, action = NOTIFY_FOLLOW) + notify_ghosts("[name] has an object of interest: [atom_of_interest]!", title = "Something's Interesting!", source = atom_of_interest, flashwindow = FALSE, action = NOTIFY_FOLLOW) /// Override this to make a custom fake announcement that differs from the normal announcement. /// Used for false alarms. diff --git a/code/modules/events/tear.dm b/code/modules/events/tear.dm index 506be351fc5..11145ccc490 100644 --- a/code/modules/events/tear.dm +++ b/code/modules/events/tear.dm @@ -26,7 +26,7 @@ // Give ghosts some time to jump there before it begins. var/image/alert_overlay = image('icons/mob/animal.dmi', notify_image) - notify_ghosts("\A [src] is about to open in [get_area(T)].", title = notify_title, source = T, alert_overlay = alert_overlay, action = NOTIFY_FOLLOW) + notify_ghosts("\A [src] is about to open in [get_area(T)].", title = notify_title, source = T, alert_overlay = alert_overlay, flashwindow = FALSE, action = NOTIFY_FOLLOW) addtimer(CALLBACK(src, PROC_REF(spawn_tear), T), 4 SECONDS) // Energy overload; we mess with machines as an early warning and for extra spookiness. diff --git a/code/modules/power/engines/singularity/singularity.dm b/code/modules/power/engines/singularity/singularity.dm index de8de552f88..83f255066c8 100644 --- a/code/modules/power/engines/singularity/singularity.dm +++ b/code/modules/power/engines/singularity/singularity.dm @@ -453,7 +453,6 @@ ghost_sound = 'sound/machines/warning-buzzer.ogg', source = src, action = NOTIFY_FOLLOW, - flashwindow = FALSE, title = "IT'S LOOSE", alert_overlay = image(icon='icons/obj/singularity.dmi', icon_state="singularity_s1") )