CVar sets always use all arguments

This commit is contained in:
myT 2022-12-28 14:37:30 +01:00
parent 608b223f52
commit cae492053f
2 changed files with 4 additions and 1 deletions

View file

@ -57,6 +57,9 @@ add: /waitms <milliseconds> to delay command executions by the specified number
add: r_alphaToCoverageMipBoost <0.0 to 0.5> (default: 0.125) boosts the alpha value of higher mip levels
with A2C enabled, it prevents alpha-tested surfaces from fading (too much) in the distance
chg: CVar sets will use all arguments instead of only the first one
example: pressing n with `bind n "name x y z"` will rename to "x y z" instead of "x"
chg: invertedpenguin's RA blood pool has a new look to help better see the RA against its background
chg: forcing the nopicmip flag on 2 new texture folders: "textures/npmenv" and "textures/npmpads"

View file

@ -846,7 +846,7 @@ qbool Cvar_Command()
}
// set the value if forcing isn't required
Cvar_Set2( v->name, Cmd_Argv(1), qfalse );
Cvar_Set2( v->name, Cmd_Args(), qfalse );
return qtrue;
}