Highlight tweaks (#25551)

This commit is contained in:
Daylight
2024-06-02 00:57:44 +03:00
committed by GitHub
parent 2abd000e1a
commit dbc26cce38
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -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.
+1 -1
View File
@@ -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.
@@ -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")
)