More reversals to fix

More reverals fixed, forgot wording on blurb
This commit is contained in:
VelocitOni 2025-07-24 23:19:03 -04:00
parent 3e194b1a28
commit d3e4f91824
4 changed files with 5 additions and 5 deletions

View file

@ -1088,7 +1088,7 @@ static void SV_SendServerInfo(INT32 node, tic_t servertime)
netbuffer->u.serverinfo.kartvars = (UINT8) (
(gamespeed & SV_SPEEDMASK) |
(dedicated ? SV_DEDICATED : 0) |
(!cv_voice_allowservervoice.value ? SV_VOICEENABLED : 1)
(!cv_voice_allowservervoice.value ? SV_VOICEENABLED : 0)
);
D_ParseCarets(netbuffer->u.serverinfo.servername, cv_servername.string, MAXSERVERNAME);
@ -5308,7 +5308,7 @@ static void PT_HandleVoiceServer(SINT8 node)
if (cv_voice_allowservervoice.value != 0)
{
// Don't even relay voice packets if voice_allowservervoice is on
// Don't even relay voice packets if voice_allowservervoice is off
return;
}

View file

@ -1224,7 +1224,7 @@ void WeaponPref_Send(UINT8 ssplayer)
if (cv_voice_selfmute.value)
prefs |= WP_SELFMUTE;
if (!cv_voice_selfdeafen.value)
if (cv_voice_selfdeafen.value)
prefs |= WP_SELFDEAFEN;
}

View file

@ -89,7 +89,7 @@ menuitem_t OPTIONS_Server[] =
{IT_HEADER, "Voice Chat...", NULL,
NULL, {NULL}, 0, 0},
{IT_STRING | IT_CVAR, "Server Voice Chat", "All voice chat will be disabled on your server.",
{IT_STRING | IT_CVAR, "Server Voice Chat", "All voice chat will be enabled on your server.",
NULL, {.cvar = &cv_voice_allowservervoice}, 0, 0},
{IT_STRING | IT_CVAR, "Proximity Effects", "Player voices will be adjusted relative to you.",

View file

@ -40,7 +40,7 @@ menuitem_t OPTIONS_Voice[] =
{IT_HEADER, "Server Voice Options...", NULL,
NULL, {NULL}, 0, 0},
{IT_STRING | IT_CVAR, "Server Voice Chat", "All voice chat will be disabled on your server.",
{IT_STRING | IT_CVAR, "Server Voice Chat", "All voice chat will be enabled on your server.",
NULL, {.cvar = &cv_voice_allowservervoice}, 0, 0},
{IT_STRING | IT_CVAR, "Proximity Effects", "Player voices will be adjusted relative to you.",