diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-02-28 08:42:45 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-02-28 08:42:45 +0100 |
commit | 2588f5a605d135bc01996f3a685444dfb37978f8 (patch) | |
tree | 4aee764dd164860d546d1e9269c8ee2967810a90 /source/World.h | |
parent | Fixed a copypasta error from rev 1224 (diff) | |
download | cuberite-2588f5a605d135bc01996f3a685444dfb37978f8.tar cuberite-2588f5a605d135bc01996f3a685444dfb37978f8.tar.gz cuberite-2588f5a605d135bc01996f3a685444dfb37978f8.tar.bz2 cuberite-2588f5a605d135bc01996f3a685444dfb37978f8.tar.lz cuberite-2588f5a605d135bc01996f3a685444dfb37978f8.tar.xz cuberite-2588f5a605d135bc01996f3a685444dfb37978f8.tar.zst cuberite-2588f5a605d135bc01996f3a685444dfb37978f8.zip |
Diffstat (limited to 'source/World.h')
-rw-r--r-- | source/World.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/World.h b/source/World.h index b744a66c1..6fc3fa088 100644 --- a/source/World.h +++ b/source/World.h @@ -312,6 +312,9 @@ public: inline cFluidSimulator * GetWaterSimulator(void) { return m_WaterSimulator; } inline cFluidSimulator * GetLavaSimulator (void) { return m_LavaSimulator; } + + /// Wakes up the simulators for the specified block + void WakeUpSimulators(int a_BlockX, int a_BlockY, int a_BlockZ); /// Calls the callback for each chest in the specified chunk; returns true if all chests processed, false if the callback aborted by returning true bool ForEachChestInChunk (int a_ChunkX, int a_ChunkZ, cChestCallback & a_Callback); // Exported in ManualBindings.cpp |