summaryrefslogtreecommitdiffstats
path: root/source/cSandSimulator.cpp
diff options
context:
space:
mode:
authorlapayo94@gmail.com <lapayo94@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-12-29 23:55:25 +0100
committerlapayo94@gmail.com <lapayo94@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-12-29 23:55:25 +0100
commit9d3b2d13351baf565ff0ee63767c1eaf6f66e04f (patch)
tree3e0d0bcf78f5b9414e05ef361cd6c68f3e921993 /source/cSandSimulator.cpp
parent - Initial food handling by cedeel (diff)
downloadcuberite-9d3b2d13351baf565ff0ee63767c1eaf6f66e04f.tar
cuberite-9d3b2d13351baf565ff0ee63767c1eaf6f66e04f.tar.gz
cuberite-9d3b2d13351baf565ff0ee63767c1eaf6f66e04f.tar.bz2
cuberite-9d3b2d13351baf565ff0ee63767c1eaf6f66e04f.tar.lz
cuberite-9d3b2d13351baf565ff0ee63767c1eaf6f66e04f.tar.xz
cuberite-9d3b2d13351baf565ff0ee63767c1eaf6f66e04f.tar.zst
cuberite-9d3b2d13351baf565ff0ee63767c1eaf6f66e04f.zip
Diffstat (limited to '')
-rw-r--r--source/cSandSimulator.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/cSandSimulator.cpp b/source/cSandSimulator.cpp
index c27607f73..c0ed2309b 100644
--- a/source/cSandSimulator.cpp
+++ b/source/cSandSimulator.cpp
@@ -72,7 +72,8 @@ bool cSandSimulator::IsPassable( char a_BlockID )
{
return a_BlockID == E_BLOCK_AIR
|| IsBlockWater(a_BlockID)
- || IsBlockLava(a_BlockID);
+ || IsBlockLava(a_BlockID)
+ || a_BlockID == E_BLOCK_FIRE;
}