Skip to content

Commit

Permalink
Alt bots learn dropped book spells (Correction) (#125)
Browse files Browse the repository at this point in the history
* Update PlayerbotAIConfig.cpp

* Update aiplayerbot.conf.dist.in

* Updated aiplayerbot.conf.dist.in.tbc and aiplayerbot.conf.dist.in.wotlk description of AiPlayerbot.AutoDoQuests to change the noted default from 0 to 1 and the text to show it is enabled.
  • Loading branch information
Pip1987 authored Jan 18, 2025
1 parent 0921717 commit 977247b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion playerbot/PlayerbotAIConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ bool PlayerbotAIConfig::Initialize()
autoLearnTrainerSpells = config.GetBoolDefault("AiPlayerbot.AutoLearnTrainerSpells", false);
autoLearnQuestSpells = config.GetBoolDefault("AiPlayerbot.AutoLearnQuestSpells", false);
autoLearnDroppedSpells = config.GetBoolDefault("AiPlayerbot.AutoLearnDroppedSpells", false);
autoDoQuests = config.GetBoolDefault("AiPlayerbot.AutoDoQuests", false);
autoDoQuests = config.GetBoolDefault("AiPlayerbot.AutoDoQuests", true);
syncLevelWithPlayers = config.GetBoolDefault("AiPlayerbot.SyncLevelWithPlayers", false);
syncLevelMaxAbove = config.GetIntDefault("AiPlayerbot.SyncLevelMaxAbove", 5);
syncLevelNoPlayer = config.GetIntDefault("AiPlayerbot.SyncLevelNoPlayer", randombotStartingLevel);
Expand Down
2 changes: 1 addition & 1 deletion playerbot/aiplayerbot.conf.dist.in
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ AiPlayerbot.AutoLearnQuestSpells = 0
AiPlayerbot.AutoLearnDroppedSpells = 0

# Random Bots will pick quests on their own and try to complete
# Default: 0 (disabled)
# Default: 1 (enabled)
# AiPlayerbot.AutoDoQuests = 1

##################################################################################
Expand Down
2 changes: 1 addition & 1 deletion playerbot/aiplayerbot.conf.dist.in.tbc
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ AiPlayerbot.AutoLearnQuestSpells = 0
AiPlayerbot.AutoLearnDroppedSpells = 0

# Random Bots will pick quests on their own and try to complete
# Default: 0 (disabled)
# Default: 1 (enabled)
# AiPlayerbot.AutoDoQuests = 1

##################################################################################
Expand Down
2 changes: 1 addition & 1 deletion playerbot/aiplayerbot.conf.dist.in.wotlk
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ AiPlayerbot.AutoLearnQuestSpells = 0
AiPlayerbot.AutoLearnDroppedSpells = 0

# Random Bots will pick quests on their own and try to complete
# Default: 0 (disabled)
# Default: 1 (enabled)
# AiPlayerbot.AutoDoQuests = 1

##################################################################################
Expand Down

0 comments on commit 977247b

Please sign in to comment.