diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-10-06 22:04:58 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-10-06 22:04:58 +0200 |
commit | 28332c656712cc692ca8355a4f5e8c0c5012c60c (patch) | |
tree | 0e4bcf6ba99be50731d64b5add9c63bd8b1dec1a /source/Root.cpp | |
parent | Removed a few debugging messages from the release builds. (diff) | |
download | cuberite-28332c656712cc692ca8355a4f5e8c0c5012c60c.tar cuberite-28332c656712cc692ca8355a4f5e8c0c5012c60c.tar.gz cuberite-28332c656712cc692ca8355a4f5e8c0c5012c60c.tar.bz2 cuberite-28332c656712cc692ca8355a4f5e8c0c5012c60c.tar.lz cuberite-28332c656712cc692ca8355a4f5e8c0c5012c60c.tar.xz cuberite-28332c656712cc692ca8355a4f5e8c0c5012c60c.tar.zst cuberite-28332c656712cc692ca8355a4f5e8c0c5012c60c.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Root.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/source/Root.cpp b/source/Root.cpp index 1b7f90d60..750478c10 100644 --- a/source/Root.cpp +++ b/source/Root.cpp @@ -10,7 +10,6 @@ #include "CraftingRecipes.h" #include "PluginManager.h" #include "MonsterConfig.h" -#include "Redstone.h" #include "Player.h" #include "Blocks/BlockHandler.h" #include "Items/ItemHandler.h" @@ -203,11 +202,7 @@ void cRoot::Start() void cRoot::LoadGlobalSettings() { - cIniFile IniFile("settings.ini"); - if( IniFile.ReadFile() ) - { - cRedstone::s_UseRedstone = IniFile.GetValueB("Redstone", "SimulateRedstone", true ); - } + // Nothing needed yet } |