Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions src/game/server/nav_generate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3434,8 +3434,14 @@ void CNavMesh::BeginGeneration( bool incremental )
}
}
#else
engine->ServerCommand( "bot_kick\n" );
#endif
#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 // TERROR

// Right now, incrementally-generated areas won't connect to existing areas automatically.
// Since this means hand-editing will be necessary, don't do a full analyze.
Expand Down
Loading