diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-09-27 15:28:14 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-09-27 15:28:14 +0200 |
commit | 72c087cfd335b015139cb73ae78f74105d855cf0 (patch) | |
tree | ec700e5083a60e03ad8374e12f4528de8c92491e /src/Root.h | |
parent | Merge pull request #1456 from Howaner/Fixes (diff) | |
download | cuberite-72c087cfd335b015139cb73ae78f74105d855cf0.tar cuberite-72c087cfd335b015139cb73ae78f74105d855cf0.tar.gz cuberite-72c087cfd335b015139cb73ae78f74105d855cf0.tar.bz2 cuberite-72c087cfd335b015139cb73ae78f74105d855cf0.tar.lz cuberite-72c087cfd335b015139cb73ae78f74105d855cf0.tar.xz cuberite-72c087cfd335b015139cb73ae78f74105d855cf0.tar.zst cuberite-72c087cfd335b015139cb73ae78f74105d855cf0.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Root.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/Root.h b/src/Root.h index 9bc975889..9a482556c 100644 --- a/src/Root.h +++ b/src/Root.h @@ -73,9 +73,6 @@ public: /// Writes chunkstats, for each world and totals, to the output callback void LogChunkStats(cCommandOutputCallback & a_Output); - int GetPrimaryServerVersion(void) const { return m_PrimaryServerVersion; } // tolua_export - void SetPrimaryServerVersion(int a_Version) { m_PrimaryServerVersion = a_Version; } // tolua_export - cMonsterConfig * GetMonsterConfig(void) { return m_MonsterConfig; } cCraftingRecipes * GetCraftingRecipes(void) { return m_CraftingRecipes; } // tolua_export @@ -169,9 +166,6 @@ private: typedef std::map<AString, cWorld *> WorldMap; typedef std::vector<cCommand> cCommandQueue; - - /// The version of the protocol that is primary for the server (reported in the server list). All versions are still supported. - int m_PrimaryServerVersion; cWorld * m_pDefaultWorld; WorldMap m_WorldsByName; |