Disable infected mode init.

This commit is contained in:
joseupp 2023-03-14 13:47:06 +01:00
parent d9787cda5a
commit b2981d4de2
2 changed files with 7 additions and 4 deletions

Binary file not shown.

View File

@ -101,8 +101,11 @@ function init()
level endon( "game_ended" ); level endon( "game_ended" );
level.botSoak = is_bot_soak(); level.botSoak = is_bot_soak();
init_bot_gametype(); if( level.rankedmatch && level.botsoak || !init_bot_gametype() )
{
return;
}
wait_for_host(); wait_for_host();
@ -819,11 +822,11 @@ function init_bot_gametype()
bot_escort::init(); bot_escort::init();
return true; return true;
} }
case "infect": /* case "infect":
{ {
return true; return true;
} }
case "gun": */ case "gun":
{ {
return true; return true;
} }