Scrubs all mentions of Vox from the code ( I suck at Git edition ) (#10423)

This commit is contained in:
Wowzewow (Wezzy)
2020-11-22 18:34:04 +08:00
committed by GitHub
parent b2ce742e9f
commit e8945fa626
44 changed files with 141 additions and 171 deletions
+6 -6
View File
@@ -2,7 +2,7 @@
// /client/proc/Toggle_asfx,
// /client/proc/Toggle_footsteps,
/client/proc/Toggle_asfx_vote,
/client/proc/toggle_vox_voice,
/client/proc/Toggle_messagesounds,
/client/proc/Toggle_dropsounds,
/client/proc/Toggle_arcadesounds,
/client/proc/Toggle_radiosounds,
@@ -57,14 +57,14 @@
to_chat(src, "<span class='warning'>You will no longer hear the vote alarm.</span>")
feedback_add_details("admin_verb","TSFXFV") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/proc/toggle_vox_voice()
set name = "Toggle VOX Voice"
/client/proc/Toggle_messagesounds()
set name = "Toggle Message SFX"
set category = "SoundFx Prefs"
set desc = "Toggles the announcement voice."
set desc = "Toggles the message sounds."
prefs.asfx_togs ^= ASFX_VOX
prefs.save_preferences()
to_chat(src, "You will [(prefs.asfx_togs & ASFX_VOX) ? "now" : "no longer"] hear the VOX voice.")
to_chat(src, "You will [(prefs.asfx_togs & ASFX_VOX) ? "now" : "no longer"] hear chat voices.")
/client/proc/Toggle_dropsounds()
set name = "Hear/Silence Drop Sounds"
@@ -112,4 +112,4 @@
if(prefs.asfx_togs & ASFX_INSTRUMENT)
to_chat(src, "You will now hear instrument sounds.")
else
to_chat(src, "<span class='warning'>You will no longer hear instrument sounds.</span>")
to_chat(src, "<span class='warning'>You will no longer hear instrument sounds.</span>")