]> icculus.org git repositories - divverent/nexuiz.git/blob - qcsrc/gamec/sv_main.c
implemented rocket and electro fly sounds
[divverent/nexuiz.git] / qcsrc / gamec / sv_main.c
1 /*
2 =============
3 StartFrame
4
5 Called before each frame by the server
6 =============
7 */
8 void StartFrame (void)
9 {
10         sv_maxspeed = cvar ("sv_maxspeed");
11         sv_friction = cvar ("sv_friction");
12         sv_accelerate = cvar ("sv_accelerate");
13         sv_stopspeed = cvar ("sv_stopspeed");
14         teamplay = cvar ("teamplay");
15
16         BotFrame ();
17         CheckRules_World ();
18 }