Compare commits

...

2 Commits

Author SHA1 Message Date
bash
ad6c9cb1bc Increased updateInterval booster time
from botAmounts * 0.13 to 0.15
2024-11-19 00:24:43 +01:00
bash
6b415cb80f playerbots.conf.dist comment added (#731) 2024-11-19 00:07:09 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -424,7 +424,7 @@ AiPlayerbot.AutoGearCommand = 1
# default: 3 (rare)
AiPlayerbot.AutoGearQualityLimit = 3
# Equips gear score limitation for auto gear command (0 = no limit)
# Equips item level (not gearScore) limitation for auto gear command (0 = no limit)
# default: 0 (no limit)
AiPlayerbot.AutoGearScoreLimit = 0

View File

@@ -323,7 +323,7 @@ void RandomPlayerbotMgr::UpdateAIInternal(uint32 elapsed, bool /*minimal*/)
// which prevents unneeded expensive GameTime calls.
if (_isBotInitializing)
{
_isBotInitializing = GameTime::GetUptime().count() < sPlayerbotAIConfig->maxRandomBots * 0.13;
_isBotInitializing = GameTime::GetUptime().count() < sPlayerbotAIConfig->maxRandomBots * 0.15;
}
uint32 updateIntervalTurboBoost = _isBotInitializing ? 1 : sPlayerbotAIConfig->randomBotUpdateInterval;