mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-15 18:06:48 +01:00
Scrubs all mentions of Vox from the code ( I suck at Git edition ) (#10423)
This commit is contained in:
@@ -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>")
|
||||
|
||||
Reference in New Issue
Block a user