summaryrefslogtreecommitdiffstats
path: root/source/Root.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Root.cpp')
-rw-r--r--source/Root.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/source/Root.cpp b/source/Root.cpp
index c624ef9aa..1e901739f 100644
--- a/source/Root.cpp
+++ b/source/Root.cpp
@@ -96,10 +96,11 @@ void cRoot::Start(void)
LOG("Creating new server instance...");
m_Server = new cServer();
- LOG("Starting server...");
+ LOG("Reading server config...");
cIniFile IniFile("settings.ini");
- if ( IniFile.ReadFile() == false )
+ if (!IniFile.ReadFile())
{
+ LOGINFO("settings.ini inaccessible, using settings.example.ini for defaults!");
IniFile.Path("settings.example.ini");
IniFile.ReadFile();
IniFile.Path("settings.ini");
@@ -115,8 +116,8 @@ void cRoot::Start(void)
LOGINFO("settings.ini: [Server].PrimaryServerVersion set to %d.", m_PrimaryServerVersion);
}
- int Port = IniFile.GetValueSetI("Server", "Port", 25565 );
- if (!m_Server->InitServer(Port))
+ LOG("Starting server...");
+ if (!m_Server->InitServer(IniFile))
{
LOGERROR("Failed to start server, shutting down.");
return;