From: havoc Date: Sat, 21 Aug 2010 22:11:10 +0000 (+0000) Subject: fix errors related to cl_rollangle on dedicated servers where the cvar X-Git-Tag: xonotic-v0.1.0preview~271 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=1f31e4052b057a6b6d01c95ff9051688cf9752a9;p=xonotic%2Fdarkplaces.git fix errors related to cl_rollangle on dedicated servers where the cvar was not being registered git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10410 d7cf8633-e32d-0410-b094-e92efae38249 ::stable-branch::merge=3c3e4f3bcee14585fb284284b143ece0c126dd75 --- diff --git a/host.c b/host.c index 3c77a0e3..dc551146 100644 --- a/host.c +++ b/host.c @@ -1122,6 +1122,7 @@ static void Host_Init (void) Mod_Init(); World_Init(); SV_Init(); + V_Init(); // some cvars needed by server player physics (cl_rollangle etc) Host_InitCommands(); Host_InitLocal(); Host_ServerOptions(); @@ -1141,7 +1142,6 @@ static void Host_Init (void) S_Init(); CDAudio_Init(); Key_Init(); - V_Init(); CL_Init(); }