[Server] Fix indents

new-script-api
Koncord 7 years ago
parent fc3f2483ee
commit ce6a4e4032

@ -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…
Cancel
Save