diff options
author | Samuel Barney <samjbarney@gmail.com> | 2015-08-19 18:45:53 +0200 |
---|---|---|
committer | Samuel Barney <samjbarney@gmail.com> | 2015-08-19 18:48:21 +0200 |
commit | cc83c4641d50818bf4fd830653438515ed5264d3 (patch) | |
tree | d4c4ebe5a88eaeba8ce9d53122c9eb92e297870c /src/Blocks/BlockHandler.h | |
parent | Merge pull request #2439 from cuberite/AppveyorYml (diff) | |
download | cuberite-cc83c4641d50818bf4fd830653438515ed5264d3.tar cuberite-cc83c4641d50818bf4fd830653438515ed5264d3.tar.gz cuberite-cc83c4641d50818bf4fd830653438515ed5264d3.tar.bz2 cuberite-cc83c4641d50818bf4fd830653438515ed5264d3.tar.lz cuberite-cc83c4641d50818bf4fd830653438515ed5264d3.tar.xz cuberite-cc83c4641d50818bf4fd830653438515ed5264d3.tar.zst cuberite-cc83c4641d50818bf4fd830653438515ed5264d3.zip |
Diffstat (limited to 'src/Blocks/BlockHandler.h')
-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 c2a9e1769..0159230a2 100644 --- a/src/Blocks/BlockHandler.h +++ b/src/Blocks/BlockHandler.h @@ -88,6 +88,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); + + /** Checks whether the block has an effect on growing the plant */ + virtual bool CanSustainPlant(BLOCKTYPE a_Plant) { return false; } /** Checks if the block can be placed at this point. Default: CanBeAt(...) |