diff options
author | Mattes D <github@xoft.cz> | 2014-05-07 22:18:23 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-05-07 22:18:23 +0200 |
commit | d9cdd4441e8a2877f2a5dcc724c781abfefafb77 (patch) | |
tree | 2609b4f09c2e224a32b21251539feeac381790fa /src/Blocks/BlockHandler.h | |
parent | Merge pull request #990 from Howaner/Entities (diff) | |
parent | Superfluous method override. (diff) | |
download | cuberite-d9cdd4441e8a2877f2a5dcc724c781abfefafb77.tar cuberite-d9cdd4441e8a2877f2a5dcc724c781abfefafb77.tar.gz cuberite-d9cdd4441e8a2877f2a5dcc724c781abfefafb77.tar.bz2 cuberite-d9cdd4441e8a2877f2a5dcc724c781abfefafb77.tar.lz cuberite-d9cdd4441e8a2877f2a5dcc724c781abfefafb77.tar.xz cuberite-d9cdd4441e8a2877f2a5dcc724c781abfefafb77.tar.zst cuberite-d9cdd4441e8a2877f2a5dcc724c781abfefafb77.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..fb6cae729 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 the dirt under this block grow to grass? */ + virtual bool CanDirtGrowGrass(NIBBLETYPE a_Meta); /** Checks if the block can be placed at this point. Default: CanBeAt(...) |