diff --git a/source/Player.cpp b/source/Player.cpp index 5a789e28..13009dad 100644 --- a/source/Player.cpp +++ b/source/Player.cpp @@ -1353,7 +1353,7 @@ void cPlayer::UseEquippedItem(void) void cPlayer::SetSwimState(cChunk & a_Chunk) { int RelY = (int)floor(m_LastPosY + 0.1); - if ((RelY < 0) || (RelY >= cChunkDef::Height)) + if ((RelY < 0) || (RelY >= cChunkDef::Height - 1)) { m_IsSwimming = false; m_IsSubmerged = false;