mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-21 17:54:48 +01:00
Various cleanups and fixes due to feedback
This commit is contained in:
@@ -35,13 +35,13 @@ bool ConfigMgr::LoadInitial(char const* file)
|
||||
|
||||
try
|
||||
{
|
||||
ptree temp;
|
||||
boost::property_tree::ini_parser::read_ini(file, temp);
|
||||
ptree fullTree;
|
||||
boost::property_tree::ini_parser::read_ini(file, fullTree);
|
||||
|
||||
|
||||
for (auto bla : temp)
|
||||
// Since we're using only one section per config file, we skip the section and have direct property access
|
||||
for (auto section : fullTree)
|
||||
{
|
||||
_config = bla.second;
|
||||
_config = section.second;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user