diff options
author | Alexander Harkness <me@bearbin.net> | 2024-11-07 21:03:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-07 21:03:21 +0100 |
commit | ab62fc398818d717b54110b13e1b3af48e07b686 (patch) | |
tree | d76804f9c594695ac3b90a00687b5398158df1f5 /src/Blocks/BlockMushroom.h | |
parent | Added code to export definitions for a lua-language-server (#5475) (diff) | |
download | cuberite-ab62fc398818d717b54110b13e1b3af48e07b686.tar cuberite-ab62fc398818d717b54110b13e1b3af48e07b686.tar.gz cuberite-ab62fc398818d717b54110b13e1b3af48e07b686.tar.bz2 cuberite-ab62fc398818d717b54110b13e1b3af48e07b686.tar.lz cuberite-ab62fc398818d717b54110b13e1b3af48e07b686.tar.xz cuberite-ab62fc398818d717b54110b13e1b3af48e07b686.tar.zst cuberite-ab62fc398818d717b54110b13e1b3af48e07b686.zip |
Diffstat (limited to 'src/Blocks/BlockMushroom.h')
-rw-r--r-- | src/Blocks/BlockMushroom.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Blocks/BlockMushroom.h b/src/Blocks/BlockMushroom.h index bed16c557..9e4378d4e 100644 --- a/src/Blocks/BlockMushroom.h +++ b/src/Blocks/BlockMushroom.h @@ -23,14 +23,15 @@ private: virtual bool CanBeAt(const cChunk & a_Chunk, const Vector3i a_Position, const NIBBLETYPE a_Meta) const override { - if (a_Position.y <= 0) + const auto BasePos = a_Position.addedY(-1); + if (!cChunkDef::IsValidHeight(BasePos)) { return false; } // TODO: Cannot be at too much daylight - switch (a_Chunk.GetBlock(a_Position.addedY(-1))) + switch (a_Chunk.GetBlock(BasePos)) { case E_BLOCK_GLASS: case E_BLOCK_CACTUS: |