mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 18:19:55 +00:00
Fix trapped soul object verifier warning
This commit is contained in:
parent
4d292425b3
commit
44a07efc27
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ void CSMTools::ReferenceCheckStage::perform(int stage, CSMDoc::Messages &message
|
||||||
// If object have creature soul trapped, check if that creature reference is valid
|
// If object have creature soul trapped, check if that creature reference is valid
|
||||||
if (!cellRef.mSoul.empty())
|
if (!cellRef.mSoul.empty())
|
||||||
if (mObjects.searchId(cellRef.mSoul) == -1)
|
if (mObjects.searchId(cellRef.mSoul) == -1)
|
||||||
messages.add(id, "Trapped soul object '" + cellRef.mOwner + "' does not exist", "", CSMDoc::Message::Severity_Error);
|
messages.add(id, "Trapped soul object '" + cellRef.mSoul + "' does not exist", "", CSMDoc::Message::Severity_Error);
|
||||||
|
|
||||||
if (cellRef.mFaction.empty())
|
if (cellRef.mFaction.empty())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue