Don't sanitize semicolon

This commit is contained in:
smallmodel 2025-01-05 17:49:27 +01:00
parent b5875ae890
commit 528039f80b
No known key found for this signature in database
GPG key ID: A96F163ED4891440

View file

@ -620,7 +620,7 @@ void Cmd_Args_Sanitize(void)
if(strlen(c) > MAX_CVAR_VALUE_STRING - 1)
c[MAX_CVAR_VALUE_STRING - 1] = '\0';
while ((c = strpbrk(c, "\n\r;"))) {
while ((c = strpbrk(c, "\n\r"))) {
*c = ' ';
++c;
}