diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-04-10 13:22:11 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-04-10 13:22:11 +0200 |
commit | c51a4b9469fee0314d1b849206d1cf1c7c1240e4 (patch) | |
tree | 655d6a392b5483eea1453a08c24e269f8ae68d09 /source/cWorld.h | |
parent | Compression error -5 fix (diff) | |
download | cuberite-c51a4b9469fee0314d1b849206d1cf1c7c1240e4.tar cuberite-c51a4b9469fee0314d1b849206d1cf1c7c1240e4.tar.gz cuberite-c51a4b9469fee0314d1b849206d1cf1c7c1240e4.tar.bz2 cuberite-c51a4b9469fee0314d1b849206d1cf1c7c1240e4.tar.lz cuberite-c51a4b9469fee0314d1b849206d1cf1c7c1240e4.tar.xz cuberite-c51a4b9469fee0314d1b849206d1cf1c7c1240e4.tar.zst cuberite-c51a4b9469fee0314d1b849206d1cf1c7c1240e4.zip |
Diffstat (limited to 'source/cWorld.h')
-rw-r--r-- | source/cWorld.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source/cWorld.h b/source/cWorld.h index a8591af65..29b7fce72 100644 --- a/source/cWorld.h +++ b/source/cWorld.h @@ -175,6 +175,9 @@ public: /// Marks (a_Stay == true) or unmarks (a_Stay == false) chunks as non-unloadable. To be used only by cChunkStay!
void ChunksStay(const cChunkCoordsList & a_Chunks, bool a_Stay = true);
+
+ /// Regenerate the given chunk:
+ void RegenerateChunk(int a_ChunkX, int a_ChunkZ);
// TODO: Export to Lua
bool DoWithEntity( int a_UniqueID, cEntityCallback & a_Callback );
@@ -324,7 +327,7 @@ private: AString m_WorldName;
AString m_IniFileName;
-
+
cWorld(const AString & a_WorldName);
~cWorld();
|