diff --git a/conf/playerbots.conf.dist b/conf/playerbots.conf.dist index 9f30a67c..fdc2e1c6 100644 --- a/conf/playerbots.conf.dist +++ b/conf/playerbots.conf.dist @@ -1997,11 +1997,11 @@ AiPlayerbot.AllowedLogFiles = "" #################################################################################################### # A list of gameObject GUID's that are not allowed for bots to interact with. # -AiPlayerbot.DisallowedGameObjects = 176213,17155,2656,74448,19020,3719,3658,3705,3706,105579,75293,2857,179490,141596,160836,160845,179516,176224,181085,176112,128308,128403,165739,165738,175245,175970,176325,176327,123329 +AiPlayerbot.DisallowedGameObjects = 176213,17155,2656,74448,19020,3719,3658,3705,3706,105579,75293,2857,179490,141596,160836,160845,179516,176224,181085,176112,128308,128403,165739,165738,175245,175970,176325,176327,123329,2560 # # List of GUID's: # QuestItems: -# 176213 = Blood of Heroes, 17155 = Defias Gunpowder, 2656 = Waterlogged Envelope, 123329 = Baelogs Chest +# 176213 = Blood of Heroes, 17155 = Defias Gunpowder, 2656 = Waterlogged Envelope, 123329 = Baelogs Chest, 2560 = Half-Buried Bottle # Chests: # Large Solid Chest = 74448, Box of Assorted Parts = 19020, Food Crate = 3719, Water Barrel = 3658, Barrel of Milk = 3705, Barrel of sweet Nectar = 3706, Tattered Chest = 105579, Large bettered Chest = 75293, Solid Chest = 2857, Battered Foodlocker = 179490, Witch Doctor's Chest = 141596, Relic Coffer = 160836, Dark Coffer = 160845, Fengus's Chest = 179516, Supply Crate = 176224/181085, Malor's Strongbox = 176112 # Other: diff --git a/src/PlayerbotAIConfig.cpp b/src/PlayerbotAIConfig.cpp index effb04db..d8662ed1 100644 --- a/src/PlayerbotAIConfig.cpp +++ b/src/PlayerbotAIConfig.cpp @@ -174,7 +174,7 @@ bool PlayerbotAIConfig::Initialize() sConfigMgr->GetOption("AiPlayerbot.DisallowedGameObjects", "176213,17155,2656,74448,19020,3719,3658,3705,3706,105579,75293,2857," "179490,141596,160836,160845,179516,176224,181085,176112,128308,128403," - "165739,165738,175245,175970,176325,176327,123329"), + "165739,165738,175245,175970,176325,176327,123329,2560"), disallowedGameObjects); botAutologin = sConfigMgr->GetOption("AiPlayerbot.BotAutologin", false); randomBotAutologin = sConfigMgr->GetOption("AiPlayerbot.RandomBotAutologin", true);