From 91fc414b206c54d77a9b51e4d18c4b702d9ef5a7 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Mon, 21 Aug 2017 19:05:09 -0500 Subject: [PATCH] Changes Ghost role ping sound effects (#2441) * change that fucking blare * Update xenobiology.dm --- code/modules/mob/living/brain/posibrain.dm | 2 +- code/modules/research/xenobiology/xenobiology.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/brain/posibrain.dm b/code/modules/mob/living/brain/posibrain.dm index 44f8810b56..175e04dcac 100644 --- a/code/modules/mob/living/brain/posibrain.dm +++ b/code/modules/mob/living/brain/posibrain.dm @@ -37,7 +37,7 @@ GLOBAL_VAR(posibrain_notify_cooldown) /obj/item/device/mmi/posibrain/proc/ping_ghosts(msg, newlymade) if(newlymade || GLOB.posibrain_notify_cooldown <= world.time) - notify_ghosts("[name] [msg] in [get_area(src)]!", ghost_sound = !newlymade ? 'sound/effects/ghost2.ogg':null, enter_link = "(Click to enter)", source = src, action = NOTIFY_ATTACK, flashwindow = FALSE) + notify_ghosts("[name] [msg] in [get_area(src)]!", ghost_sound = !newlymade ? 'sound/misc/server-ready.ogg':null, enter_link = "(Click to enter)", source = src, action = NOTIFY_ATTACK, flashwindow = FALSE) if(!newlymade) GLOB.posibrain_notify_cooldown = world.time + askDelay diff --git a/code/modules/research/xenobiology/xenobiology.dm b/code/modules/research/xenobiology/xenobiology.dm index 9c826f5f5f..f4b262f858 100644 --- a/code/modules/research/xenobiology/xenobiology.dm +++ b/code/modules/research/xenobiology/xenobiology.dm @@ -486,7 +486,7 @@ /obj/effect/golemrune/Initialize() . = ..() START_PROCESSING(SSobj, src) - notify_ghosts("Golem rune created in [get_area(src)].", 'sound/effects/ghost2.ogg', source = src) + notify_ghosts("Golem rune created in [get_area(src)].", 'sound/misc/server-ready.ogg', source = src) /obj/effect/golemrune/Destroy() STOP_PROCESSING(SSobj, src)