1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-01 04:15:35 +00:00

Allow base plugins to overwrite referencables made in other base plugins.

This commit is contained in:
Aesylwinn 2016-09-24 16:45:08 -04:00
parent 4b178f6f3d
commit b899d43a33

View file

@ -175,6 +175,12 @@ namespace CSMWorld
{
mContainer[index].setModified(record);
}
else
{
// Overwrite
mContainer[index].setModified(record);
mContainer[index].merge();
}
}
return index;