diff --git a/src/server/scripts/Commands/cs_learn.cpp b/src/server/scripts/Commands/cs_learn.cpp index d9729ea52..fd9575059 100644 --- a/src/server/scripts/Commands/cs_learn.cpp +++ b/src/server/scripts/Commands/cs_learn.cpp @@ -92,7 +92,7 @@ public: SpellScriptsBounds bounds = sObjectMgr->GetSpellScriptsBounds(spell); uint32 spellDifficultyId = sSpellMgr->GetSpellDifficultyId(spell); - if (handler->GetSession()->GetSecurity() < SEC_CONSOLE && (bounds.first != bounds.second || spellDifficultyId)) + if (handler->GetSession()->GetSecurity() < SEC_ADMINISTRATOR && (bounds.first != bounds.second || spellDifficultyId)) { handler->PSendSysMessage("Spell %u cannot be learnt using a command!", spell); handler->SetSentErrorMessage(true);