mirror of
https://github.com/ValveSoftware/source-sdk-2013.git
synced 2025-04-08 11:01:33 +00:00
fixed bot_kick
This commit is contained in:
parent
cd7ff9d05f
commit
1637b425ba
1 changed files with 7 additions and 1 deletions
|
@ -3434,7 +3434,13 @@ void CNavMesh::BeginGeneration( bool incremental )
|
|||
}
|
||||
}
|
||||
#else
|
||||
engine->ServerCommand( "bot_kick\n" );
|
||||
#if defined(HL2MP)
|
||||
engine->ServerCommand("hl2mp_bot_kick all\n");
|
||||
#elif defined(TF_CLIENT_DLL)
|
||||
engine->ServerCommand("tf_bot_kick all\n");
|
||||
#else
|
||||
engine->ServerCommand("bot_kick\n");
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// Right now, incrementally-generated areas won't connect to existing areas automatically.
|
||||
|
|
Loading…
Reference in a new issue