diff options
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockDeadBush.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Blocks/BlockDeadBush.h b/src/Blocks/BlockDeadBush.h index 9afa2d323..0e81d6c2f 100644 --- a/src/Blocks/BlockDeadBush.h +++ b/src/Blocks/BlockDeadBush.h @@ -17,6 +17,11 @@ public: { } + virtual bool DoesIgnoreBuildCollision(void) override + { + return true; + } + virtual bool CanBeAt(cChunkInterface & a_ChunkInterface, int a_RelX, int a_RelY, int a_RelZ, const cChunk & a_Chunk) override { if (a_RelY <= 0) |