From fb37d28e2af24099463728e4c8b040675e27a1cf Mon Sep 17 00:00:00 2001 From: mostlikely4r Date: Tue, 3 Dec 2024 09:19:19 +0100 Subject: [PATCH] Auto learn: Spells learned from quests are no longer limited to quests above min level 9 --- playerbot/strategy/actions/AutoLearnSpellAction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playerbot/strategy/actions/AutoLearnSpellAction.cpp b/playerbot/strategy/actions/AutoLearnSpellAction.cpp index e21b6a57..787187c3 100644 --- a/playerbot/strategy/actions/AutoLearnSpellAction.cpp +++ b/playerbot/strategy/actions/AutoLearnSpellAction.cpp @@ -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) ||