diff options
Diffstat (limited to '')
-rw-r--r-- | source/cSandSimulator.cpp | 3 |
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;
}
|