mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-01 11:15:36 +00:00
changed ID check in leveled list to name.
This commit is contained in:
parent
e860717105
commit
220d92f865
1 changed files with 2 additions and 2 deletions
|
@ -1072,9 +1072,9 @@ template<typename LIST> void CSMTools::ReferenceableCheckStage::listCheck(
|
|||
{
|
||||
for (unsigned i = 0; i < somelist.mList.size(); ++i)
|
||||
{
|
||||
if (somelist.mList[i].mId.empty())
|
||||
if (somelist.mList[i].mName.empty())
|
||||
{
|
||||
messages.push_back(someid + "|" + somelist.mId + " contains item with empty Id");
|
||||
messages.push_back(someid + "|" + somelist.mId + " contains item with empty name");
|
||||
}
|
||||
|
||||
if (somelist.mList[i].mLevel < 1)
|
||||
|
|
Loading…
Reference in a new issue