diff options
Diffstat (limited to '')
-rw-r--r-- | src/Simulator/SandSimulator.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Simulator/SandSimulator.cpp b/src/Simulator/SandSimulator.cpp index 01e699b49..d10523c61 100644 --- a/src/Simulator/SandSimulator.cpp +++ b/src/Simulator/SandSimulator.cpp @@ -319,6 +319,11 @@ void cSandSimulator::DoInstantFall(cChunk * a_Chunk, int a_RelX, int a_RelY, int { BlockY = y + 1; } + else if ((FallingBlockType == E_BLOCK_CONCRETE_POWDER) && IsBlockWater(BlockType)) + { + FallingBlockType = E_BLOCK_CONCRETE; + BlockY = y; + } else { // Can fall further down |