diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-10-19 20:48:34 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-10-19 20:48:34 +0200 |
commit | 9a9f15eec6d43b83d451e9bb4d0d2139b5863b8e (patch) | |
tree | 33a59b396f946999deba576b796fb56357f4d1c5 | |
parent | Added spawn eggs with mobs (patch committed by Luksor) (diff) | |
download | cuberite-9a9f15eec6d43b83d451e9bb4d0d2139b5863b8e.tar cuberite-9a9f15eec6d43b83d451e9bb4d0d2139b5863b8e.tar.gz cuberite-9a9f15eec6d43b83d451e9bb4d0d2139b5863b8e.tar.bz2 cuberite-9a9f15eec6d43b83d451e9bb4d0d2139b5863b8e.tar.lz cuberite-9a9f15eec6d43b83d451e9bb4d0d2139b5863b8e.tar.xz cuberite-9a9f15eec6d43b83d451e9bb4d0d2139b5863b8e.tar.zst cuberite-9a9f15eec6d43b83d451e9bb4d0d2139b5863b8e.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Simulator/FluidSimulator.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/Simulator/FluidSimulator.cpp b/source/Simulator/FluidSimulator.cpp index cec208d94..66ba40941 100644 --- a/source/Simulator/FluidSimulator.cpp +++ b/source/Simulator/FluidSimulator.cpp @@ -34,6 +34,7 @@ bool cFluidSimulator::CanWashAway(BLOCKTYPE a_BlockType) { case E_BLOCK_BROWN_MUSHROOM: case E_BLOCK_CACTUS: + case E_BLOCK_CROPS: case E_BLOCK_DEAD_BUSH: case E_BLOCK_RAIL: case E_BLOCK_REDSTONE_TORCH_OFF: @@ -42,6 +43,7 @@ bool cFluidSimulator::CanWashAway(BLOCKTYPE a_BlockType) case E_BLOCK_RED_MUSHROOM: case E_BLOCK_RED_ROSE: case E_BLOCK_SNOW: + case E_BLOCK_SUGARCANE: case E_BLOCK_TALL_GRASS: case E_BLOCK_TORCH: case E_BLOCK_YELLOW_FLOWER: |