mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-31 06:15:32 +00:00
[Server] Fix indents
This commit is contained in:
parent
fc3f2483ee
commit
ce6a4e4032
2 changed files with 7 additions and 7 deletions
|
@ -501,14 +501,14 @@ void LuaState::loadMods(std::vector<std::string> *list)
|
|||
|
||||
|
||||
vector<vector<ServerPluginInfo>::iterator> sortedPluginList;
|
||||
if(list != nullptr && !list->empty()) // manual sorted list
|
||||
if (list != nullptr && !list->empty()) // manual sorted list
|
||||
{
|
||||
for(const auto &mssp : *list)
|
||||
for (const auto &mssp : *list)
|
||||
{
|
||||
bool found = false;
|
||||
for (auto it = mods.begin(); it != mods.end(); ++it)
|
||||
{
|
||||
if(it->name == mssp)
|
||||
if (it->name == mssp)
|
||||
{
|
||||
checkDependencies(mods, *it, false); // check dependencies, but do not throw exceptions
|
||||
sortedPluginList.push_back(it);
|
||||
|
@ -516,14 +516,14 @@ void LuaState::loadMods(std::vector<std::string> *list)
|
|||
break;
|
||||
}
|
||||
}
|
||||
if(!found)
|
||||
if (!found)
|
||||
throw runtime_error("Plugin: \"" + mssp + "\" not found");
|
||||
}
|
||||
}
|
||||
else
|
||||
sortedPluginList = loadOrderSolver(mods);
|
||||
|
||||
for(auto &&mod : sortedPluginList)
|
||||
for (auto &&mod : sortedPluginList)
|
||||
{
|
||||
mod->env = openScript(mod->path.first, mod->path.second);
|
||||
|
||||
|
|
|
@ -248,7 +248,7 @@ int main(int argc, char *argv[])
|
|||
|
||||
|
||||
|
||||
if(mgr.getBool("autoSort", "Plugins"))
|
||||
if (mgr.getBool("autoSort", "Plugins"))
|
||||
networking.getState().loadMods();
|
||||
else
|
||||
{
|
||||
|
@ -259,7 +259,7 @@ int main(int argc, char *argv[])
|
|||
for (int i = 0;; ++i)
|
||||
list.push_back(mgr.getString("Plugin" + to_string(i), "Plugins"));
|
||||
}
|
||||
catch(...) {} // Manager::getString throws runtime_error exception if setting is not exist
|
||||
catch (...) {} // Manager::getString throws runtime_error exception if setting is not exist
|
||||
|
||||
networking.getState().loadMods(&list);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue