RA.MinLevel to Ra.MinLevel (#18387)

Solves https://github.com/TrinityCore/TrinityCore/issues/18386
This commit is contained in:
Sean Rhone
2016-12-02 03:19:30 -05:00
committed by Aokromes
parent 7e0a616657
commit 023eec874a

View File

@@ -135,7 +135,7 @@ bool RASession::CheckAccessLevel(const std::string& user)
Field* fields = result->Fetch();
if (fields[1].GetUInt8() < sConfigMgr->GetIntDefault("RA.MinLevel", 3))
if (fields[1].GetUInt8() < sConfigMgr->GetIntDefault("Ra.MinLevel", 3))
{
TC_LOG_INFO("commands.ra", "User %s has no privilege to login", user.c_str());
return false;