diff --git a/src/game/ObjectMgr.cpp b/src/game/ObjectMgr.cpp index 46c6f01fa..433d75f1c 100644 --- a/src/game/ObjectMgr.cpp +++ b/src/game/ObjectMgr.cpp @@ -1026,7 +1026,7 @@ void ObjectMgr::LoadCreatureModelInfo() { if (minfo->modelid_other_gender == minfo->modelid) { - sLog.outErrorDb("Table `creature_model_info` has redundent modelid_other_gender model (%u) defined for model id %u.", minfo->modelid_other_gender, minfo->modelid); + sLog.outErrorDb("Table `creature_model_info` has redundant modelid_other_gender model (%u) defined for model id %u.", minfo->modelid_other_gender, minfo->modelid); const_cast(minfo)->modelid_other_gender = 0; } else if (!sCreatureDisplayInfoStore.LookupEntry(minfo->modelid_other_gender)) @@ -1040,7 +1040,7 @@ void ObjectMgr::LoadCreatureModelInfo() { if (minfo->modelid_alternative == minfo->modelid) { - sLog.outErrorDb("Table `creature_model_info` has redundent modelid_alternative model (%u) defined for model id %u.", minfo->modelid_alternative, minfo->modelid); + sLog.outErrorDb("Table `creature_model_info` has redundant modelid_alternative model (%u) defined for model id %u.", minfo->modelid_alternative, minfo->modelid); const_cast(minfo)->modelid_alternative = 0; } else if (!sCreatureDisplayInfoStore.LookupEntry(minfo->modelid_alternative)) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index c2f907043..6e01e2a09 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "10896" + #define REVISION_NR "10897" #endif // __REVISION_NR_H__