diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-05-25 14:46:34 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-05-25 14:46:34 +0200 |
commit | ee929793f09c431693e1bef7edd77213ba412f60 (patch) | |
tree | 566189dcea2b6cac9d3bd2958026b9ad9a264027 /src/World.h | |
parent | Updated Core (diff) | |
download | cuberite-ee929793f09c431693e1bef7edd77213ba412f60.tar cuberite-ee929793f09c431693e1bef7edd77213ba412f60.tar.gz cuberite-ee929793f09c431693e1bef7edd77213ba412f60.tar.bz2 cuberite-ee929793f09c431693e1bef7edd77213ba412f60.tar.lz cuberite-ee929793f09c431693e1bef7edd77213ba412f60.tar.xz cuberite-ee929793f09c431693e1bef7edd77213ba412f60.tar.zst cuberite-ee929793f09c431693e1bef7edd77213ba412f60.zip |
Diffstat (limited to 'src/World.h')
-rw-r--r-- | src/World.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/World.h b/src/World.h index 86cbb3e7e..5ef63a540 100644 --- a/src/World.h +++ b/src/World.h @@ -117,6 +117,22 @@ public: }; + class cTaskSendBlockToAllPlayers : + public cTask + { + public: + cTaskSendBlockToAllPlayers(int a_BlockX, int a_BlockY, int a_BlockZ); + + protected: + // cTask overrides: + virtual void Run(cWorld & a_World) override; + + int m_BlockX; + int m_BlockY; + int m_BlockZ; + }; + + static const char * GetClassStatic(void) // Needed for ManualBindings's ForEach templates { return "cWorld"; @@ -373,7 +389,7 @@ public: /** Sets the block at the specified coords to the specified value. Full processing, incl. updating neighbors, is performed. */ - void SetBlock(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta); + void SetBlock(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, bool a_SendToClients = true); /** Sets the block at the specified coords to the specified value. The replacement doesn't trigger block updates. |