Reverses Announcement sound pref to hopefully fix it starting off.

This commit is contained in:
Shadowlight213
2016-02-20 15:59:15 -03:00
parent e5bfff0cc9
commit 07565ffaa5
4 changed files with 18 additions and 16 deletions
+6 -6
View File
@@ -280,11 +280,11 @@ var/global/list/ghost_orbits = list(GHOST_ORBIT_CIRCLE,GHOST_ORBIT_TRIANGLE,GHOS
else
src << "<span class='notice'>You will no longer examine things you click on.</span>"
/client/verb/toggle_announcment_sound()
set name = "Hear/Silence Announcments"
/client/verb/toggle_announcement_sound()
set name = "Hear/Silence Announcements"
set category = "Preferences"
set desc = ".Toggles hearing Central Command, Captain, VOX, and other announcment sounds"
prefs.toggles ^= SOUND_ANNOUNCMENTS
src << "You will now [(prefs.toggles & SOUND_ANNOUNCMENTS) ? "hear announcment sounds" : "no longer hear announcments"]."
set desc = ".Toggles hearing Central Command, Captain, VOX, and other announcement sounds"
prefs.toggles ^= SOUND_ANNOUNCEMENTS
src << "You will now [(prefs.toggles & SOUND_ANNOUNCEMENTS) ? "no longer hear announcements" : "hear announcement sounds"]."
prefs.save_preferences()
feedback_add_details("admin_verb","TAS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
feedback_add_details("admin_verb","TAS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!