summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockComparator.h
diff options
context:
space:
mode:
authorAlexander Harkness <me@bearbin.net>2024-11-07 00:31:57 +0100
committerAlexander Harkness <me@bearbin.net>2024-11-07 00:39:01 +0100
commit457ec3db25543dfd730425c0aeef874f1c3fea3e (patch)
treeb99e444ec72e67b2bbbfc9d2fcf6052024583549 /src/Blocks/BlockComparator.h
parentAdded code to export definitions for a lua-language-server (#5475) (diff)
downloadcuberite-canbeat-cleanup.tar
cuberite-canbeat-cleanup.tar.gz
cuberite-canbeat-cleanup.tar.bz2
cuberite-canbeat-cleanup.tar.lz
cuberite-canbeat-cleanup.tar.xz
cuberite-canbeat-cleanup.tar.zst
cuberite-canbeat-cleanup.zip
Diffstat (limited to 'src/Blocks/BlockComparator.h')
-rw-r--r--src/Blocks/BlockComparator.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Blocks/BlockComparator.h b/src/Blocks/BlockComparator.h
index 18aa2a8b9..815bbe6a1 100644
--- a/src/Blocks/BlockComparator.h
+++ b/src/Blocks/BlockComparator.h
@@ -154,14 +154,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 BelowPos = a_Position.addedY(-1);
+ if (!cChunkDef::IsValidHeight(BelowPos))
{
return false;
}
BLOCKTYPE BelowBlock;
NIBBLETYPE BelowBlockMeta;
- a_Chunk.GetBlockTypeMeta(a_Position.addedY(-1), BelowBlock, BelowBlockMeta);
+ a_Chunk.GetBlockTypeMeta(BelowPos, BelowBlock, BelowBlockMeta);
if (cBlockInfo::FullyOccupiesVoxel(BelowBlock))
{