forked from mirror/openmw-tes3mp
Allow Script records with missing SCDT (precompiled code, not used anyway)
Not sure on the exact conditions, but this was missing in a plugin that I made in the TES-CS, while vanilla MW would load it just fine.
This commit is contained in:
parent
628d57f18c
commit
1c178768f5
1 changed files with 5 additions and 2 deletions
|
@ -64,8 +64,11 @@ void Script::load(ESMReader &esm)
|
|||
}
|
||||
|
||||
// Script mData
|
||||
if (esm.isNextSub("SCDT"))
|
||||
{
|
||||
mScriptData.resize(mData.mScriptDataSize);
|
||||
esm.getHNExact(&mScriptData[0], mScriptData.size(), "SCDT");
|
||||
esm.getHExact(&mScriptData[0], mScriptData.size());
|
||||
}
|
||||
|
||||
// Script text
|
||||
mScriptText = esm.getHNOString("SCTX");
|
||||
|
|
Loading…
Reference in a new issue