diff options
author | hle0 <91701075+hle0@users.noreply.github.com> | 2022-03-26 22:10:30 +0100 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2022-04-12 01:06:31 +0200 |
commit | d98e2bdaa3903de29f62791c05472a693b0ea36b (patch) | |
tree | e2acc9547a4dc5a1d52468f7eff1174aa29b08e4 /src/Simulator/SandSimulator.cpp | |
parent | Disable u8 prefix C++20 warning since we need it (diff) | |
download | cuberite-d98e2bdaa3903de29f62791c05472a693b0ea36b.tar cuberite-d98e2bdaa3903de29f62791c05472a693b0ea36b.tar.gz cuberite-d98e2bdaa3903de29f62791c05472a693b0ea36b.tar.bz2 cuberite-d98e2bdaa3903de29f62791c05472a693b0ea36b.tar.lz cuberite-d98e2bdaa3903de29f62791c05472a693b0ea36b.tar.xz cuberite-d98e2bdaa3903de29f62791c05472a693b0ea36b.tar.zst cuberite-d98e2bdaa3903de29f62791c05472a693b0ea36b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Simulator/SandSimulator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Simulator/SandSimulator.cpp b/src/Simulator/SandSimulator.cpp index 8b0d1be7f..13bc6bb36 100644 --- a/src/Simulator/SandSimulator.cpp +++ b/src/Simulator/SandSimulator.cpp @@ -43,7 +43,7 @@ void cSandSimulator::SimulateChunk(std::chrono::milliseconds a_Dt, int a_ChunkX, continue; } - BLOCKTYPE BlockBelow = (itr->y > 0) ? a_Chunk->GetBlock(itr->x, itr->y - 1, itr->z) : E_BLOCK_AIR; + BLOCKTYPE BlockBelow = (itr->y > 0) ? a_Chunk->GetBlock(itr->x, itr->y - 1, itr->z) : static_cast<BLOCKTYPE>(E_BLOCK_AIR); if (CanStartFallingThrough(BlockBelow)) { if (m_IsInstantFall) |