diff --git a/code/modules/admin/verbs/pray.dm b/code/modules/admin/verbs/pray.dm index 23f5a75e2c3..844f74b5f65 100644 --- a/code/modules/admin/verbs/pray.dm +++ b/code/modules/admin/verbs/pray.dm @@ -21,6 +21,7 @@ if(R_ADMIN & C.holder.rights) if(C.is_preference_enabled(/datum/client_preference/admin/show_chat_prayers)) C << msg + C << 'sound/effects/ding.ogg' usr << "Your prayers have been received by the gods." feedback_add_details("admin_verb","PR") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! @@ -31,9 +32,11 @@ for(var/client/C in admins) if(R_ADMIN & C.holder.rights) C << msg + C << 'sound/machines/signal.ogg' /proc/Syndicate_announce(var/msg, var/mob/Sender) msg = "\blue ILLEGAL:[key_name(Sender, 1)] (PP) (VV) (SM) ([admin_jump_link(Sender, src)]) (CA) (BSA) (RPLY): [msg]" for(var/client/C in admins) if(R_ADMIN & C.holder.rights) C << msg + C << 'sound/machines/signal.ogg' \ No newline at end of file diff --git a/code/modules/paperwork/faxmachine.dm b/code/modules/paperwork/faxmachine.dm index b99833670d5..724ccbdd27b 100644 --- a/code/modules/paperwork/faxmachine.dm +++ b/code/modules/paperwork/faxmachine.dm @@ -158,7 +158,7 @@ var/list/adminfaxes = list() //cache for faxes that have been sent to admins return 0 //You can't send faxes to "Unknown" flick("faxreceive", src) - playsound(loc, "sound/items/polaroid1.ogg", 50, 1) + playsound(loc, "sound/effects/printer.ogg", 50, 1) // give the sprite some time to flick sleep(20) @@ -216,3 +216,4 @@ var/list/adminfaxes = list() //cache for faxes that have been sent to admins for(var/client/C in admins) if(R_ADMIN & C.holder.rights) C << msg + C << 'sound/effects/printer.ogg' \ No newline at end of file diff --git a/html/changelogs/JerTheAce_Prayer.yml b/html/changelogs/JerTheAce_Prayer.yml new file mode 100644 index 00000000000..e8c82094105 --- /dev/null +++ b/html/changelogs/JerTheAce_Prayer.yml @@ -0,0 +1,37 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: JerTheAce + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "CentCom Fax, Admin Prayer, and CentCom emergency messages now prompt admins with a pleasing sound effect." + - tweak: "Fax machines now sound like fax machines and not polaroid cameras." diff --git a/sound/effects/ding.ogg b/sound/effects/ding.ogg new file mode 100644 index 00000000000..33516f793f3 Binary files /dev/null and b/sound/effects/ding.ogg differ diff --git a/sound/effects/printer.ogg b/sound/effects/printer.ogg new file mode 100644 index 00000000000..c9546490f17 Binary files /dev/null and b/sound/effects/printer.ogg differ