fix throw in addPluginConfigVar

This commit is contained in:
Vaxry 2024-02-12 10:33:18 +00:00
parent d23884e8e7
commit d88e8229b5

View file

@ -1356,7 +1356,7 @@ void CConfigManager::addPluginConfigVar(HANDLE handle, const std::string& name,
std::string field = name.substr(7);
m_pConfig->addSpecialConfigValue("plugin:", field.c_str(), value);
m_pConfig->addSpecialConfigValue("plugin", field.c_str(), value);
pluginVariables.push_back({handle, field});
}