diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-10-25 21:20:29 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-10-25 21:20:29 +0200 |
commit | 2c9e187189af11f59bb7026d2304536b8356c3a6 (patch) | |
tree | 6f5402ccc6db8e6637a1f8b2902595762405d733 /source/World.cpp | |
parent | Debug filename has a "_debug" appended to it, so that it's different from the release version. (diff) | |
download | cuberite-2c9e187189af11f59bb7026d2304536b8356c3a6.tar cuberite-2c9e187189af11f59bb7026d2304536b8356c3a6.tar.gz cuberite-2c9e187189af11f59bb7026d2304536b8356c3a6.tar.bz2 cuberite-2c9e187189af11f59bb7026d2304536b8356c3a6.tar.lz cuberite-2c9e187189af11f59bb7026d2304536b8356c3a6.tar.xz cuberite-2c9e187189af11f59bb7026d2304536b8356c3a6.tar.zst cuberite-2c9e187189af11f59bb7026d2304536b8356c3a6.zip |
Diffstat (limited to '')
-rw-r--r-- | source/World.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/source/World.cpp b/source/World.cpp index 1834a49da..7d095971d 100644 --- a/source/World.cpp +++ b/source/World.cpp @@ -217,12 +217,13 @@ cWorld::~cWorld() -cWorld::cWorld( const AString & a_WorldName ) - : m_SpawnMonsterTime( 0.f ) - , m_RSList ( 0 ) - , m_Weather ( eWeather_Sunny ) +cWorld::cWorld(const AString & a_WorldName) : + m_SpawnMonsterTime(0.f), + m_RSList(0), + m_Weather(eWeather_Sunny), + m_WeatherInterval(24000) // Guaranteed 1 day of sunshine at server start :) { - LOG("cWorld::cWorld(%s)", a_WorldName.c_str()); + LOGD("cWorld::cWorld(%s)", a_WorldName.c_str()); m_WorldName = a_WorldName; m_IniFileName = m_WorldName + "/world.ini"; @@ -265,7 +266,7 @@ cWorld::cWorld( const AString & a_WorldName ) m_bAnimals = true; m_SpawnMonsterRate = 10; cIniFile IniFile2("settings.ini"); - if( IniFile2.ReadFile() ) + if (IniFile2.ReadFile()) { m_bAnimals = IniFile2.GetValueB("Monsters", "AnimalsOn", true ); m_SpawnMonsterRate = (float)IniFile2.GetValueF("Monsters", "AnimalSpawnInterval", 10); @@ -303,7 +304,7 @@ cWorld::cWorld( const AString & a_WorldName ) // Save any changes that the defaults may have done to the ini file: if (!IniFile.WriteFile()) { - LOG("WARNING: Could not write to %s", m_IniFileName.c_str()); + LOGWARNING("Could not write world config to %s", m_IniFileName.c_str()); } } |