mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2025-02-12 03:59:06 +00:00
Update FireStream.java
Updated Firestream to ignite newer blocks (not yet including 1.8 blocks) Removed snow and snow blocks from being burnable as the moisture in these blocks would extinguish a fire.
This commit is contained in:
parent
0b37626399
commit
8aca48fb6a
1 changed files with 11 additions and 3 deletions
|
@ -128,8 +128,16 @@ public class FireStream {
|
||||||
Material.MYCEL, Material.NETHER_BRICK, Material.NETHERRACK,
|
Material.MYCEL, Material.NETHER_BRICK, Material.NETHERRACK,
|
||||||
Material.OBSIDIAN, Material.REDSTONE_ORE, Material.SAND,
|
Material.OBSIDIAN, Material.REDSTONE_ORE, Material.SAND,
|
||||||
Material.SANDSTONE, Material.SMOOTH_BRICK, Material.STONE,
|
Material.SANDSTONE, Material.SMOOTH_BRICK, Material.STONE,
|
||||||
Material.SOUL_SAND, Material.SNOW_BLOCK, Material.WOOD,
|
Material.SOUL_SAND, Material.WOOD, // Material.SNOW_BLOCK,
|
||||||
Material.WOOL, Material.LEAVES
|
Material.WOOL, Material.LEAVES, Material.MELON_BLOCK,
|
||||||
|
Material.PUMPKIN, Material.JACK_O_LANTERN, Material.NOTE_BLOCK,
|
||||||
|
Material.GLOWSTONE, Material.IRON_BLOCK, Material.DISPENSER,
|
||||||
|
Material.SPONGE, Material.IRON_ORE, Material.GOLD_ORE,
|
||||||
|
Material.COAL_BLOCK, Material.WORKBENCH, Material.HAY_BLOCK,
|
||||||
|
Material.REDSTONE_LAMP_OFF, Material.REDSTONE_LAMP_ON,
|
||||||
|
Material.EMERALD_ORE, Material.EMERALD_BLOCK, Material.REDSTONE_BLOCK,
|
||||||
|
Material.QUARTZ_BLOCK, Material.QUARTZ_ORE, Material.STAINED_CLAY,
|
||||||
|
Material.HARD_CLAY
|
||||||
};
|
};
|
||||||
|
|
||||||
Block belowblock = block.getRelative(BlockFace.DOWN);
|
Block belowblock = block.getRelative(BlockFace.DOWN);
|
||||||
|
|
Loading…
Reference in a new issue