summaryrefslogtreecommitdiffstats
path: root/source/Simulator/FluidSimulator.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-18 21:41:29 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-18 21:41:29 +0200
commitc68aa68c699a618d0172bceacf553ab96fc32cdd (patch)
treea2eb1d2e76ea183f2c0aee66accd98beeba48e0d /source/Simulator/FluidSimulator.cpp
parentFixed item damage value not being read from the 1.3.2 protocol (wtf, why was it disabled?) (diff)
downloadcuberite-c68aa68c699a618d0172bceacf553ab96fc32cdd.tar
cuberite-c68aa68c699a618d0172bceacf553ab96fc32cdd.tar.gz
cuberite-c68aa68c699a618d0172bceacf553ab96fc32cdd.tar.bz2
cuberite-c68aa68c699a618d0172bceacf553ab96fc32cdd.tar.lz
cuberite-c68aa68c699a618d0172bceacf553ab96fc32cdd.tar.xz
cuberite-c68aa68c699a618d0172bceacf553ab96fc32cdd.tar.zst
cuberite-c68aa68c699a618d0172bceacf553ab96fc32cdd.zip
Diffstat (limited to 'source/Simulator/FluidSimulator.cpp')
-rw-r--r--source/Simulator/FluidSimulator.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/source/Simulator/FluidSimulator.cpp b/source/Simulator/FluidSimulator.cpp
index 2ade2ba11..cec208d94 100644
--- a/source/Simulator/FluidSimulator.cpp
+++ b/source/Simulator/FluidSimulator.cpp
@@ -32,15 +32,19 @@ bool cFluidSimulator::CanWashAway(BLOCKTYPE a_BlockType)
{
switch (a_BlockType)
{
- case E_BLOCK_YELLOW_FLOWER:
- case E_BLOCK_RED_ROSE:
- case E_BLOCK_RED_MUSHROOM:
case E_BLOCK_BROWN_MUSHROOM:
case E_BLOCK_CACTUS:
- case E_BLOCK_TORCH:
+ case E_BLOCK_DEAD_BUSH:
+ case E_BLOCK_RAIL:
case E_BLOCK_REDSTONE_TORCH_OFF:
case E_BLOCK_REDSTONE_TORCH_ON:
- case E_BLOCK_RAIL:
+ case E_BLOCK_REDSTONE_WIRE:
+ case E_BLOCK_RED_MUSHROOM:
+ case E_BLOCK_RED_ROSE:
+ case E_BLOCK_SNOW:
+ case E_BLOCK_TALL_GRASS:
+ case E_BLOCK_TORCH:
+ case E_BLOCK_YELLOW_FLOWER:
{
return true;
}