forked from mirror/openmw-tes3mp
OpenMW-CS: Recognize special faction ID "FFFF" (no faction) during topic info verification (Fixes #3564)
This commit is contained in:
parent
3dce155d96
commit
53b006eccb
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ void CSMTools::TopicInfoCheckStage::perform(int stage, CSMDoc::Messages& message
|
|||
verifyCell(topicInfo.mCell, id, messages);
|
||||
}
|
||||
|
||||
if (!topicInfo.mFaction.empty())
|
||||
if (!topicInfo.mFaction.empty() && !topicInfo.mFactionLess)
|
||||
{
|
||||
if (verifyId(topicInfo.mFaction, mFactions, id, messages))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue