mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-30 15:45:31 +00:00
Make AI package items to be editable when a new row is added.
This commit is contained in:
parent
f7c7aeecb3
commit
82bc666e00
1 changed files with 7 additions and 1 deletions
|
@ -1363,7 +1363,13 @@ namespace CSMWorld
|
|||
std::vector<ESM::AIPackage>& list = actor.mAiPackage.mList;
|
||||
|
||||
ESM::AIPackage newRow;
|
||||
newRow.mType = ESM::AI_CNDT;
|
||||
newRow.mType = ESM::AI_Wander;
|
||||
newRow.mWander.mDistance = 0;
|
||||
newRow.mWander.mDuration = 0;
|
||||
newRow.mWander.mTimeOfDay = 0;
|
||||
for (int i = 0; i < 8; ++i)
|
||||
newRow.mWander.mIdle[i] = 0;
|
||||
newRow.mWander.mShouldRepeat = 0;
|
||||
newRow.mCellName = "";
|
||||
|
||||
if (position >= (int)list.size())
|
||||
|
|
Loading…
Reference in a new issue