From 079d00ab15a89ddcc6d47d02bab30a1d1a3b909b Mon Sep 17 00:00:00 2001 From: VelocitOni Date: Thu, 24 Jul 2025 20:10:40 -0400 Subject: [PATCH] Voice Chat menu for normies Changed a bit of wording around to stop in-dev confusion, closer to Discord for player facing variables. Didn't change any of the actual true variable names at all. --- src/menus/options-voice.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/menus/options-voice.cpp b/src/menus/options-voice.cpp index 7f3a8ba00..c7e1c4926 100644 --- a/src/menus/options-voice.cpp +++ b/src/menus/options-voice.cpp @@ -16,22 +16,22 @@ menuitem_t OPTIONS_Voice[] = { - {IT_STRING | IT_CVAR, "Voice Chat", "Turn on or off all voice chat for yourself.", + {IT_STRING | IT_CVAR, "All Voice Chat", "Choose to opt-in to voice chat at all, for yourself.", NULL, {.cvar = &cv_voice_chat}, 0, 0}, - {IT_STRING | IT_CVAR, "Voice Mode", "When to transmit your own voice.", + {IT_STRING | IT_CVAR, "Input Mode", "When to transmit your own voice.", NULL, {.cvar = &cv_voice_mode}, 0, 0}, {IT_STRING | IT_CVAR, "Input Amplifier", "Amplify your voice, in decibels. Negative values are quieter.", NULL, {.cvar = &cv_voice_inputamp}, 0, 0}, - {IT_STRING | IT_CVAR, "Activation Threshold", "Voice higher than this threshold will transmit, in decibels.", + {IT_STRING | IT_CVAR, "Input Sensitivity", "Voice higher than this threshold will transmit, in decibels.", NULL, {.cvar = &cv_voice_activationthreshold}, 0, 0}, - {IT_STRING | IT_CVAR, "Self Voice Mute", "Whether your voice is transmitted or not.", + {IT_STRING | IT_CVAR, "Mute Self", "Whether your voice is transmitted or not.", NULL, {.cvar = &cv_voice_selfmute}, 0, 0}, - {IT_STRING | IT_CVAR, "Voice Loopback", "Play your own recording voice back.", + {IT_STRING | IT_CVAR, "Voice Loopback", "Play your own voice back simultaneously.", NULL, {.cvar = &cv_voice_loopback}, 0, 0}, {IT_SPACE | IT_NOTHING, NULL, NULL, @@ -40,7 +40,7 @@ menuitem_t OPTIONS_Voice[] = {IT_HEADER, "Server Voice Options...", NULL, NULL, {NULL}, 0, 0}, - {IT_STRING | IT_CVAR, "Server Voice Mute", "All voice chat will be disabled on your server.", + {IT_STRING | IT_CVAR, "No Server Voice Chat", "All voice chat will be disabled on your server.", NULL, {.cvar = &cv_voice_servermute}, 0, 0}, {IT_STRING | IT_CVAR, "Proximity Effects", "Player voices will be adjusted relative to you.",