diff options
author | Alexander Harkness <me@bearbin.net> | 2020-04-05 13:43:03 +0200 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2020-04-05 13:43:03 +0200 |
commit | 16b3de94c89edae2ba8ff7ad6baa6b322c4571af (patch) | |
tree | 25edccb322365173c29c32a543c08a9d7910fb8a | |
parent | FluidSimulator: Carrots should be also washable (#4619) (diff) | |
download | cuberite-16b3de94c89edae2ba8ff7ad6baa6b322c4571af.tar cuberite-16b3de94c89edae2ba8ff7ad6baa6b322c4571af.tar.gz cuberite-16b3de94c89edae2ba8ff7ad6baa6b322c4571af.tar.bz2 cuberite-16b3de94c89edae2ba8ff7ad6baa6b322c4571af.tar.lz cuberite-16b3de94c89edae2ba8ff7ad6baa6b322c4571af.tar.xz cuberite-16b3de94c89edae2ba8ff7ad6baa6b322c4571af.tar.zst cuberite-16b3de94c89edae2ba8ff7ad6baa6b322c4571af.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Simulator/FluidSimulator.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Simulator/FluidSimulator.cpp b/src/Simulator/FluidSimulator.cpp index ebd357936..69a8375aa 100644 --- a/src/Simulator/FluidSimulator.cpp +++ b/src/Simulator/FluidSimulator.cpp @@ -44,6 +44,7 @@ bool cFluidSimulator::CanWashAway(BLOCKTYPE a_BlockType) case E_BLOCK_DETECTOR_RAIL: case E_BLOCK_INACTIVE_COMPARATOR: case E_BLOCK_LILY_PAD: + case E_BLOCK_POTATOES: case E_BLOCK_POWERED_RAIL: case E_BLOCK_RAIL: case E_BLOCK_REDSTONE_REPEATER_OFF: @@ -57,8 +58,8 @@ bool cFluidSimulator::CanWashAway(BLOCKTYPE a_BlockType) case E_BLOCK_SUGARCANE: case E_BLOCK_TALL_GRASS: case E_BLOCK_TORCH: - case E_BLOCK_TRIPWIRE_HOOK: case E_BLOCK_TRIPWIRE: + case E_BLOCK_TRIPWIRE_HOOK: case E_BLOCK_YELLOW_FLOWER: { return true; |