Index: code/game/g_cmds.c =================================================================== --- code/game/g_cmds.c (revision 1858) +++ code/game/g_cmds.c (working copy) @@ -386,6 +386,13 @@ ================== */ void Cmd_LevelShot_f( gentity_t *ent ) { + // Only allow if ent is localhost + if (!ent->client->pers.localClient) { + trap_SendServerCommand( ent-g_entities, + "print \"levelshot command is for local client only\n\"" ); + return; + } + if ( !CheatsOk( ent ) ) { return; } Index: code/cgame/cg_servercmds.c =================================================================== --- code/cgame/cg_servercmds.c (revision 1858) +++ code/cgame/cg_servercmds.c (working copy) @@ -460,6 +460,8 @@ cg.intermissionStarted = qfalse; + cg.levelShot = qfalse; + cgs.voteTime = 0; cg.mapRestart = qtrue;