forked from mirror/openmw-tes3mp
Copy base data to modified.
This commit is contained in:
parent
a54ab153b0
commit
128371c902
2 changed files with 4 additions and 2 deletions
|
@ -61,7 +61,9 @@ namespace CSMWorld
|
|||
template <typename ESXRecordT>
|
||||
RecordBase *Record<ESXRecordT>::clone() const
|
||||
{
|
||||
return new Record<ESXRecordT> (*this);
|
||||
Record<ESXRecordT> *copy = new Record<ESXRecordT> (*this);
|
||||
copy->mModified = (*this).get();
|
||||
return copy;
|
||||
}
|
||||
|
||||
template <typename ESXRecordT>
|
||||
|
|
|
@ -471,7 +471,7 @@ void CSMWorld::RefIdCollection::cloneRecord(const std::string& origin,
|
|||
const CSMWorld::UniversalId::Type type)
|
||||
{
|
||||
std::auto_ptr<RecordBase> newRecord(mData.getRecord(mData.searchId(origin)).clone());
|
||||
newRecord->mState = RecordBase::State_BaseOnly;
|
||||
newRecord->mState = RecordBase::State_ModifiedOnly;
|
||||
mAdapters.find(type)->second->setId(*newRecord, destination);
|
||||
mData.insertRecord(*newRecord, type, destination);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue