fakeping: force-enable fake pings on listen server
combat: reduce jumping when in strafe mode (ref #699) linkage: enable bots bullet spread when running without metamod Co-Authored-By: Max <161382234+dyspose@users.noreply.github.com>
This commit is contained in:
parent
9cb8171030
commit
ae913a52db
3 changed files with 29 additions and 2 deletions
|
|
@ -1216,7 +1216,16 @@ void Game::printBotVersion () const {
|
|||
}
|
||||
|
||||
void Game::ensureHealthyGameEnvironment () {
|
||||
if (!isDedicated () || is (GameFlags::Legacy | GameFlags::Xash3D)) {
|
||||
const bool dedicated = isDedicated ();
|
||||
|
||||
if (!dedicated || is (GameFlags::Legacy | GameFlags::Xash3D)) {
|
||||
if (!dedicated) {
|
||||
|
||||
// force enable pings on listen servers if disabled at all
|
||||
if (is (GameFlags::Modern) && cv_show_latency.as <int> () == 0) {
|
||||
cv_show_latency.set (2);
|
||||
}
|
||||
}
|
||||
return; // listen servers doesn't care about it at all
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue