Comment fix (#1263)

Reflecting changes made a while back about changing the default active bots from 10% to 100% 9fb2b51f16
This commit is contained in:
NoxMax
2025-05-04 07:37:01 -06:00
committed by GitHub
parent 1cae1b389e
commit 2649cc0ad5

View File

@@ -4321,7 +4321,7 @@ bool PlayerbotAI::AllowActive(ActivityType activityType)
// #######################################################################################
// Below is code to have a specified % of bots active at all times.
// The default is 10%. With 0.1% of all bots going active or inactive each minute.
// The default is 100%. With 1% of all bots going active or inactive each minute.
uint32 mod = sPlayerbotAIConfig->botActiveAlone > 100 ? 100 : sPlayerbotAIConfig->botActiveAlone;
if (sPlayerbotAIConfig->botActiveAloneSmartScale &&
bot->GetLevel() >= sPlayerbotAIConfig->botActiveAloneSmartScaleWhenMinLevel &&