[10948] Fixed typo in enum names

This commit is contained in:
VladimirMangos 2011-01-02 00:23:32 +03:00
parent bf0ecf6e71
commit 20e7cdb55e
5 changed files with 13 additions and 13 deletions

View file

@ -1252,13 +1252,13 @@ void World::SetInitialWorldSettings()
sLog.outString("Initializing Scripts...");
switch(sScriptMgr.LoadScriptLibrary(MANGOS_SCRIPT_NAME))
{
case SCRIPT_LOAR_OK:
case SCRIPT_LOAD_OK:
sLog.outString("Scripting library loaded.");
break;
case SCRIPT_LOAR_ERR_NOT_FOUND:
case SCRIPT_LOAD_ERR_NOT_FOUND:
sLog.outError("Scripting library not found or not accessable.");
break;
case SCRIPT_LOAR_ERR_WRONG_API:
case SCRIPT_LOAD_ERR_WRONG_API:
sLog.outError("Scripting library has wrong list functions (outdated?).");
break;
}