Fixes Some Sounds Having Reverb (#15602)

* Fixes Some Sounds Having Reverb

* typeless
This commit is contained in:
Fox McCloud
2021-02-24 04:34:34 -05:00
committed by GitHub
parent 0e95b723d8
commit 78cb60f160
47 changed files with 83 additions and 123 deletions
+2 -2
View File
@@ -34,7 +34,7 @@ GLOBAL_VAR_INIT(nologevent, 0)
to_chat(C, msg)
if(important)
if(C.prefs?.sound & SOUND_ADMINHELP)
SEND_SOUND(C, 'sound/effects/adminhelp.ogg')
SEND_SOUND(C, sound('sound/effects/adminhelp.ogg'))
window_flash(C)
/**
@@ -51,7 +51,7 @@ GLOBAL_VAR_INIT(nologevent, 0)
to_chat(C, msg)
if(important)
if(C.prefs?.sound & SOUND_MENTORHELP)
SEND_SOUND(C, 'sound/effects/adminhelp.ogg')
SEND_SOUND(C, sound('sound/effects/adminhelp.ogg'))
window_flash(C)
/proc/admin_ban_mobsearch(var/mob/M, var/ckey_to_find, var/mob/admin_to_notify)