summaryrefslogtreecommitdiffstats
path: root/src/Simulator/FireSimulator.cpp
diff options
context:
space:
mode:
authorHowaner <franzi.moos@googlemail.com>2014-02-28 15:26:32 +0100
committerHowaner <franzi.moos@googlemail.com>2014-02-28 15:26:32 +0100
commit66c84250410bf24bc689436c570c284bc47e3638 (patch)
treeb0d9de1efb603c55c041505f6c12b7d5b092a846 /src/Simulator/FireSimulator.cpp
parentFixed crash and some warnings in map handling. (diff)
downloadcuberite-66c84250410bf24bc689436c570c284bc47e3638.tar
cuberite-66c84250410bf24bc689436c570c284bc47e3638.tar.gz
cuberite-66c84250410bf24bc689436c570c284bc47e3638.tar.bz2
cuberite-66c84250410bf24bc689436c570c284bc47e3638.tar.lz
cuberite-66c84250410bf24bc689436c570c284bc47e3638.tar.xz
cuberite-66c84250410bf24bc689436c570c284bc47e3638.tar.zst
cuberite-66c84250410bf24bc689436c570c284bc47e3638.zip
Diffstat (limited to 'src/Simulator/FireSimulator.cpp')
-rw-r--r--src/Simulator/FireSimulator.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Simulator/FireSimulator.cpp b/src/Simulator/FireSimulator.cpp
index b77fa1658..85190c82b 100644
--- a/src/Simulator/FireSimulator.cpp
+++ b/src/Simulator/FireSimulator.cpp
@@ -162,14 +162,27 @@ bool cFireSimulator::IsFuel(BLOCKTYPE a_BlockType)
switch (a_BlockType)
{
case E_BLOCK_PLANKS:
+ case E_BLOCK_DOUBLE_WOODEN_SLAB:
+ case E_BLOCK_WOODEN_SLAB:
+ case E_BLOCK_WOODEN_STAIRS:
+ case E_BLOCK_SPRUCE_WOOD_STAIRS:
+ case E_BLOCK_BIRCH_WOOD_STAIRS:
+ case E_BLOCK_JUNGLE_WOOD_STAIRS:
case E_BLOCK_LEAVES:
+ case E_BLOCK_NEW_LEAVES:
case E_BLOCK_LOG:
+ case E_BLOCK_NEW_LOG:
case E_BLOCK_WOOL:
case E_BLOCK_BOOKCASE:
case E_BLOCK_FENCE:
case E_BLOCK_TNT:
case E_BLOCK_VINES:
case E_BLOCK_HAY_BALE:
+ case E_BLOCK_TALL_GRASS:
+ case E_BLOCK_BIG_FLOWER:
+ case E_BLOCK_DANDELION:
+ case E_BLOCK_FLOWER:
+ case E_BLOCK_CARPET:
{
return true;
}