1
0
Fork 0

Always keep bots, even with 'devmap'.

This commit is contained in:
ToKu 2022-01-21 20:02:11 +01:00
parent 9113e447e0
commit fe81a837d1
1 changed files with 3 additions and 2 deletions

View File

@ -196,13 +196,14 @@ static void SV_Map_f( void ) {
else {
if ( !Q_stricmp( cmd, "devmap" ) ) {
cheat = qtrue;
killBots = qtrue;
} else {
cheat = qfalse;
killBots = qfalse;
}
if( sv_gametype->integer == GT_SINGLE_PLAYER ) {
Cvar_SetIntegerValue( "g_gametype", GT_FFA );
killBots = qtrue;
} else {
killBots = qfalse;
}
}