Addresses #1110 - Add a system to blacklist GameObject GUID's (#1365)

* Addresses #1110

* Addresses #1110
This commit is contained in:
Jelly
2025-06-08 09:22:06 -05:00
committed by GitHub
parent cfc8e85706
commit d15ec79252
4 changed files with 24 additions and 4 deletions

View File

@@ -156,7 +156,9 @@ bool PlayerbotAIConfig::Initialize()
LoadList<std::vector<uint32>>(
sConfigMgr->GetOption<std::string>("AiPlayerbot.RandomBotQuestIds", "7848,3802,5505,6502,7761"),
randomBotQuestIds);
LoadSet<std::set<uint32>>(sConfigMgr->GetOption<std::string>("AiPlayerbot.DisallowedGameObjects", "176213,17155"),
disallowedGameObjects);
botAutologin = sConfigMgr->GetOption<bool>("AiPlayerbot.BotAutologin", false);
randomBotAutologin = sConfigMgr->GetOption<bool>("AiPlayerbot.RandomBotAutologin", true);
minRandomBots = sConfigMgr->GetOption<int32>("AiPlayerbot.MinRandomBots", 50);