diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2021-04-07 18:15:28 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@outlook.com> | 2021-04-12 23:35:07 +0200 |
commit | 956f5bca280e8d5e40dd2c81313a8b5b72ae0706 (patch) | |
tree | ee25690a69e46460dbca0a524dda0fe7fe42bf79 /src | |
parent | Fix incorrect name in deserialiser for zombie pigmen (diff) | |
download | cuberite-956f5bca280e8d5e40dd2c81313a8b5b72ae0706.tar cuberite-956f5bca280e8d5e40dd2c81313a8b5b72ae0706.tar.gz cuberite-956f5bca280e8d5e40dd2c81313a8b5b72ae0706.tar.bz2 cuberite-956f5bca280e8d5e40dd2c81313a8b5b72ae0706.tar.lz cuberite-956f5bca280e8d5e40dd2c81313a8b5b72ae0706.tar.xz cuberite-956f5bca280e8d5e40dd2c81313a8b5b72ae0706.tar.zst cuberite-956f5bca280e8d5e40dd2c81313a8b5b72ae0706.zip |
Diffstat (limited to '')
-rw-r--r-- | src/World.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/World.h b/src/World.h index 82dd04b49..8db9a9e9d 100644 --- a/src/World.h +++ b/src/World.h @@ -56,8 +56,6 @@ class cWorld // tolua_export public: // tolua_end - - /** A simple RAII locker for the chunkmap - locks the chunkmap in its constructor, unlocks it in the destructor */ class cLock: public cCSLock @@ -67,13 +65,6 @@ public: cLock(const cWorld & a_World); }; - - - static const char * GetClassStatic(void) // Needed for ManualBindings's ForEach templates - { - return "cWorld"; - } - /** Construct the world and read settings from its ini file. @param a_DeadlockDetect is used for tracking this world's age, detecting a possible deadlock. @param a_WorldNames is a list of all world names, used to validate linked worlds |