Transfer server settings while using append

This commit is contained in:
furo 2024-08-25 20:20:13 +02:00
parent be2e49e1f6
commit 7628783e95

View file

@ -8881,6 +8881,22 @@ bool CEditor::Append(const char *pFileName, int StorageType, bool IgnoreHistory)
}
NewMap.m_vpGroups.clear();
// transfer server settings
for(const auto &pSetting : NewMap.m_vSettings)
{
// Check if setting already exists
bool AlreadyExists = false;
for(const auto &pExistingSetting : m_Map.m_vSettings)
{
if(!str_comp(pExistingSetting.m_aCommand, pSetting.m_aCommand))
AlreadyExists = true;
}
if(!AlreadyExists)
m_Map.m_vSettings.push_back(pSetting);
}
NewMap.m_vSettings.clear();
auto IndexMap = SortImages();
if(!IgnoreHistory)