forked from teamnwah/openmw-tes3coop
ooops, using search id
This commit is contained in:
parent
89d4a90c06
commit
fbcb1a14fc
1 changed files with 1 additions and 12 deletions
|
@ -765,18 +765,7 @@ void CSMTools::ReferenceableCheckStage::npcCheck(
|
|||
}
|
||||
else //checking if there is a such race
|
||||
{
|
||||
bool noSuchRace(true);
|
||||
|
||||
for (int i = 0; i < mRaces.getSize(); ++i)
|
||||
{
|
||||
if (Misc::StringUtils::ciEqual(dynamic_cast<const ESM::Race&>(mRaces.getRecord(i).get()).mId, npc.mRace))
|
||||
{
|
||||
noSuchRace = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (noSuchRace)
|
||||
if ((!mRaces.searchId(npc.mRace)))
|
||||
{
|
||||
messages.push_back(id.toString() + "|" + npc.mId + " has invalid race");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue