mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-27 06:55:54 -04:00
ooops, using search id
This commit is contained in:
parent
89d4a90c06
commit
fbcb1a14fc
@ -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…
x
Reference in New Issue
Block a user