Skip to content

Commit

Permalink
Auto learn: Spells learned from quests are no longer limited to quest…
Browse files Browse the repository at this point in the history
…s above min level 9
  • Loading branch information
mostlikely4r committed Dec 3, 2024
1 parent b44b091 commit fb37d28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playerbot/strategy/actions/AutoLearnSpellAction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ void AutoLearnSpellAction::LearnQuestSpells(std::ostringstream* out)
uint32 questId = i->first;
Quest const* quest = i->second.get();

if (!quest->GetRequiredClasses() || quest->IsRepeatable() || quest->GetMinLevel() < 10)
if (!quest->GetRequiredClasses() || quest->IsRepeatable())
continue;

if (!bot->SatisfyQuestClass(quest, false) ||
Expand Down

0 comments on commit fb37d28

Please sign in to comment.