Second batch of bug fixes reported and patched by Zack "ZTurtleMan" Middleton:

#4740
#4741
#4742
#4743
#4744
This commit is contained in:
Thilo Schulz 2010-08-29 18:08:29 +00:00
parent 83a3e2ae1b
commit 5fe2a61910
4 changed files with 19 additions and 5 deletions

View file

@ -180,11 +180,15 @@ static void SV_Map_f( void ) {
// may not set sv_maxclients directly, always set latched
Cvar_SetLatched( "sv_maxclients", "8" );
cmd += 2;
cheat = qfalse;
if (!Q_stricmp( cmd, "devmap" ) ) {
cheat = qtrue;
} else {
cheat = qfalse;
}
killBots = qtrue;
}
else {
if ( !Q_stricmp( cmd, "devmap" ) || !Q_stricmp( cmd, "spdevmap" ) ) {
if ( !Q_stricmp( cmd, "devmap" ) ) {
cheat = qtrue;
killBots = qtrue;
} else {