load data from server.ini only iff no parameters are give
This commit is contained in:
parent
175112d97d
commit
a2819d822a
@ -215,8 +215,11 @@ inline bool GenerateServerProgramOptions(
|
||||
|
||||
// parse config file
|
||||
ServerPaths::const_iterator path_iterator = paths.find("config");
|
||||
if( path_iterator != paths.end() &&
|
||||
boost::filesystem::is_regular_file(path_iterator->second)) {
|
||||
if(
|
||||
path_iterator != paths.end() &&
|
||||
boost::filesystem::is_regular_file(path_iterator->second) &&
|
||||
!option_variables.count("base")
|
||||
) {
|
||||
SimpleLogger().Write() <<
|
||||
"Reading options from: " << path_iterator->second.string();
|
||||
std::string config_str;
|
||||
|
Loading…
Reference in New Issue
Block a user