sv_aim: change default to 1 (autoaim off) and CVAR_NONE

git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@958 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
ewasylishen 2014-08-07 18:47:37 +00:00
parent 55bb3124c4
commit 77b3403561
1 changed files with 1 additions and 1 deletions

View File

@ -1325,7 +1325,7 @@ Pick a vector for the player to shoot along
vector aim(entity, missilespeed)
=============
*/
cvar_t sv_aim = {"sv_aim", "0.93", CVAR_ARCHIVE};
cvar_t sv_aim = {"sv_aim", "1", CVAR_NONE}; // ericw -- turn autoaim off by default. was 0.93
static void PF_aim (void)
{
edict_t *ent, *check, *bestent;