summaryrefslogtreecommitdiffstats
path: root/source/Server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Server.cpp')
-rw-r--r--source/Server.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/source/Server.cpp b/source/Server.cpp
index 8cf923882..8b1fd3c1e 100644
--- a/source/Server.cpp
+++ b/source/Server.cpp
@@ -31,17 +31,13 @@
#include <sstream>
#include <iostream>
-
-
-
-
extern "C" {
#include "zlib.h"
}
-bool g_bWaterPhysics = false;
+
typedef std::list< cClientHandle* > ClientList;
@@ -209,10 +205,8 @@ bool cServer::InitServer( int a_Port )
cIniFile IniFile("settings.ini");
if (IniFile.ReadFile())
{
- g_bWaterPhysics = IniFile.GetValueB("Physics", "Water", false );
-
m_pState->ServerID = "-";
- if (IniFile.GetValueB("Authentication", "Authenticate"))
+ if (IniFile.GetValueSetB("Authentication", "Authenticate", true))
{
MTRand mtrand1;
unsigned int r1 = (mtrand1.randInt()%1147483647) + 1000000000;