Adds a toggleable notification sound to prayers for admins (#12977)

* Adds a toggleable notification sound to prayers for admins

* code quality improvement
This commit is contained in:
Darkmight9
2020-12-16 15:33:12 -05:00
committed by GitHub
parent f5d017bc5a
commit 961da75431
3 changed files with 13 additions and 1 deletions
@@ -91,6 +91,15 @@
to_chat(src, "You will [(prefs.toggles & PREFTOGGLE_CHAT_PRAYER) ? "now" : "no longer"] see prayerchat.")
feedback_add_details("admin_verb","TP") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/verb/toggleprayernotify()
set name = "Hear/Silence Prayer Notification Sound"
set category = "Preferences"
set desc = "Toggles hearing when prayers are made"
prefs.sound ^= SOUND_PRAYERNOTIFY
prefs.save_preferences(src)
to_chat(src, "You will [(prefs.sound & SOUND_PRAYERNOTIFY) ? "now" : "no longer"] hear when prayers are made.")
feedback_add_details("admin_verb","TPS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/verb/togglescoreboard()
set name = "Hide/Display End Round Scoreboard"
set category = "Preferences"