From 2649cc0ad51fd74a16947c40c95c8905ebb328d8 Mon Sep 17 00:00:00 2001 From: NoxMax <50133316+NoxMax@users.noreply.github.com> Date: Sun, 4 May 2025 07:37:01 -0600 Subject: [PATCH] Comment fix (#1263) Reflecting changes made a while back about changing the default active bots from 10% to 100% 9fb2b51f169ddb9ab7c7a463f85cafe1da33c56c --- src/PlayerbotAI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PlayerbotAI.cpp b/src/PlayerbotAI.cpp index 8c62ef43..fe4cf4b4 100644 --- a/src/PlayerbotAI.cpp +++ b/src/PlayerbotAI.cpp @@ -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 &&