diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-04-06 21:41:01 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-04-06 21:41:01 +0200 |
commit | 039191499caec958d3d79773e4ed1c1c4e2916c2 (patch) | |
tree | dd32b3f7dce4d31f0d8a40e8b84dad4285358cb4 /src/Blocks/BlockHandler.h | |
parent | Merge branch 'master' into Slabs (diff) | |
download | cuberite-039191499caec958d3d79773e4ed1c1c4e2916c2.tar cuberite-039191499caec958d3d79773e4ed1c1c4e2916c2.tar.gz cuberite-039191499caec958d3d79773e4ed1c1c4e2916c2.tar.bz2 cuberite-039191499caec958d3d79773e4ed1c1c4e2916c2.tar.lz cuberite-039191499caec958d3d79773e4ed1c1c4e2916c2.tar.xz cuberite-039191499caec958d3d79773e4ed1c1c4e2916c2.tar.zst cuberite-039191499caec958d3d79773e4ed1c1c4e2916c2.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockHandler.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Blocks/BlockHandler.h b/src/Blocks/BlockHandler.h index 3a3efb3cc..760db02fe 100644 --- a/src/Blocks/BlockHandler.h +++ b/src/Blocks/BlockHandler.h @@ -85,6 +85,9 @@ public: /// Checks if the block can stay at the specified relative coords in the chunk virtual bool CanBeAt(cChunkInterface & a_ChunkInterface, int a_RelX, int a_RelY, int a_RelZ, const cChunk & a_Chunk); + + /** Can spread the block under this block to grass? */ + virtual bool CanChangeDirtToGrass(BLOCKTYPE a_Block, NIBBLETYPE a_Meta); /** Checks if the block can be placed at this point. Default: CanBeAt(...) |