diff options
author | Mattes D <github@xoft.cz> | 2014-03-02 10:22:40 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-03-02 10:22:40 +0100 |
commit | 0f2d9bc35f98ebe01fa83392f21ba18f63a68ad2 (patch) | |
tree | 3b5f0158e91c817336e124e34019cf479897e967 /src/Simulator | |
parent | Added more documentation for FastNBT parser. (diff) | |
parent | Use switch in GetStepSound (diff) | |
download | cuberite-0f2d9bc35f98ebe01fa83392f21ba18f63a68ad2.tar cuberite-0f2d9bc35f98ebe01fa83392f21ba18f63a68ad2.tar.gz cuberite-0f2d9bc35f98ebe01fa83392f21ba18f63a68ad2.tar.bz2 cuberite-0f2d9bc35f98ebe01fa83392f21ba18f63a68ad2.tar.lz cuberite-0f2d9bc35f98ebe01fa83392f21ba18f63a68ad2.tar.xz cuberite-0f2d9bc35f98ebe01fa83392f21ba18f63a68ad2.tar.zst cuberite-0f2d9bc35f98ebe01fa83392f21ba18f63a68ad2.zip |
Diffstat (limited to 'src/Simulator')
-rw-r--r-- | src/Simulator/FireSimulator.cpp | 13 |
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; } |