diff options
Diffstat (limited to '')
-rw-r--r-- | src/Items/ItemBoat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Items/ItemBoat.h b/src/Items/ItemBoat.h index 51f2f8803..4fc041787 100644 --- a/src/Items/ItemBoat.h +++ b/src/Items/ItemBoat.h @@ -70,7 +70,7 @@ public: // Block above must be air to spawn a boat (prevents spawning a boat underwater) auto PosAbove = Callbacks.m_Pos.Floor().addedY(1); - if (!cChunkDef::IsValidHeight(PosAbove.y)) + if (!cChunkDef::IsValidHeight(PosAbove)) { return false; } |