forked from teamnwah/openmw-tes3coop
Print deletion state in ObjectReferenceInfo
This commit is contained in:
parent
689dea4cb3
commit
deb7f3caf6
2 changed files with 6 additions and 1 deletions
|
@ -1051,6 +1051,11 @@ namespace MWScript
|
||||||
msg << "RefNum: " << ptr.getCellRef().getRefNum().mIndex << std::endl;
|
msg << "RefNum: " << ptr.getCellRef().getRefNum().mIndex << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (ptr.getRefData().isDeletedByContentFile())
|
||||||
|
msg << "[Deleted by content file]" << std::endl;
|
||||||
|
if (!ptr.getRefData().getCount())
|
||||||
|
msg << "[Deleted]" << std::endl;
|
||||||
|
|
||||||
msg << "RefID: " << ptr.getCellRef().getRefId() << std::endl;
|
msg << "RefID: " << ptr.getCellRef().getRefId() << std::endl;
|
||||||
|
|
||||||
if (ptr.isInCell())
|
if (ptr.isInCell())
|
||||||
|
|
|
@ -310,7 +310,7 @@ namespace Compiler
|
||||||
extensions.registerFunction ("getpctraveling", 'l', "", opcodeGetPcTraveling);
|
extensions.registerFunction ("getpctraveling", 'l', "", opcodeGetPcTraveling);
|
||||||
extensions.registerInstruction ("betacomment", "/S", opcodeBetaComment, opcodeBetaCommentExplicit);
|
extensions.registerInstruction ("betacomment", "/S", opcodeBetaComment, opcodeBetaCommentExplicit);
|
||||||
extensions.registerInstruction ("bc", "/S", opcodeBetaComment, opcodeBetaCommentExplicit);
|
extensions.registerInstruction ("bc", "/S", opcodeBetaComment, opcodeBetaCommentExplicit);
|
||||||
extensions.registerInstruction ("ori", "/S", opcodeBetaComment, opcodeBetaCommentExplicit);
|
extensions.registerInstruction ("ori", "/S", opcodeBetaComment, opcodeBetaCommentExplicit); // 'ori' stands for 'ObjectReferenceInfo'
|
||||||
extensions.registerInstruction ("addtolevcreature", "ccl", opcodeAddToLevCreature);
|
extensions.registerInstruction ("addtolevcreature", "ccl", opcodeAddToLevCreature);
|
||||||
extensions.registerInstruction ("removefromlevcreature", "ccl", opcodeRemoveFromLevCreature);
|
extensions.registerInstruction ("removefromlevcreature", "ccl", opcodeRemoveFromLevCreature);
|
||||||
extensions.registerInstruction ("addtolevitem", "ccl", opcodeAddToLevItem);
|
extensions.registerInstruction ("addtolevitem", "ccl", opcodeAddToLevItem);
|
||||||
|
|
Loading…
Reference in a new issue