diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-02-07 21:10:12 +0100 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-02-07 21:10:12 +0100 |
commit | 0f36d1c122c78757c9106eb6afa5e3897a87e5fb (patch) | |
tree | af15705e4d27ee6fdad50f1c3486bd16728cee60 /src/World.cpp | |
parent | Removed some unexported documentation. (diff) | |
download | cuberite-0f36d1c122c78757c9106eb6afa5e3897a87e5fb.tar cuberite-0f36d1c122c78757c9106eb6afa5e3897a87e5fb.tar.gz cuberite-0f36d1c122c78757c9106eb6afa5e3897a87e5fb.tar.bz2 cuberite-0f36d1c122c78757c9106eb6afa5e3897a87e5fb.tar.lz cuberite-0f36d1c122c78757c9106eb6afa5e3897a87e5fb.tar.xz cuberite-0f36d1c122c78757c9106eb6afa5e3897a87e5fb.tar.zst cuberite-0f36d1c122c78757c9106eb6afa5e3897a87e5fb.zip |
Diffstat (limited to '')
-rw-r--r-- | src/World.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/World.cpp b/src/World.cpp index e5c9f4398..bb6f5f29a 100644 --- a/src/World.cpp +++ b/src/World.cpp @@ -544,10 +544,10 @@ void cWorld::Start(void) m_IsPumpkinBonemealable = IniFile.GetValueSetB("Plants", "IsPumpkinBonemealable", false); m_IsSaplingBonemealable = IniFile.GetValueSetB("Plants", "IsSaplingBonemealable", true); m_IsSugarcaneBonemealable = IniFile.GetValueSetB("Plants", "IsSugarcaneBonemealable", false); - m_bEnabledPVP = IniFile.GetValueSetB("PVP", "Enabled", true); m_IsDeepSnowEnabled = IniFile.GetValueSetB("Physics", "DeepSnow", true); m_ShouldLavaSpawnFire = IniFile.GetValueSetB("Physics", "ShouldLavaSpawnFire", true); m_bCommandBlocksEnabled = IniFile.GetValueSetB("Mechanics", "CommandBlocksEnabled", false); + m_bEnabledPVP = IniFile.GetValueSetB("Mechanics", "PVPEnabled", true); m_bUseChatPrefixes = IniFile.GetValueSetB("Mechanics", "UseChatPrefixes", true); m_VillagersShouldHarvestCrops = IniFile.GetValueSetB("Monsters", "VillagersShouldHarvestCrops", true); |