diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-05-28 20:13:58 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-05-28 20:13:58 +1000 |
commit | baec3943ca0516d3b3890275a2555a929803cae5 (patch) | |
tree | e71253eec11b72abb43a9acea6aabee83f653a8a /src/Java/gtPlusPlus/core/block/general | |
parent | ecc8a0dac954c75eb7fc1748eb1c7c267f7cc948 (diff) | |
download | GT5-Unofficial-baec3943ca0516d3b3890275a2555a929803cae5.tar.gz GT5-Unofficial-baec3943ca0516d3b3890275a2555a929803cae5.tar.bz2 GT5-Unofficial-baec3943ca0516d3b3890275a2555a929803cae5.zip |
% Changed the name & ability of the Alkalus Disk.
+ Made Hellish Fire burn the Dark World Unstable Earth.
+ Made the .gitignore exclude the screenshots folder.
Diffstat (limited to 'src/Java/gtPlusPlus/core/block/general')
-rw-r--r-- | src/Java/gtPlusPlus/core/block/general/HellFire.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/block/general/HellFire.java b/src/Java/gtPlusPlus/core/block/general/HellFire.java index 240da54e48..2adab5d5e7 100644 --- a/src/Java/gtPlusPlus/core/block/general/HellFire.java +++ b/src/Java/gtPlusPlus/core/block/general/HellFire.java @@ -66,6 +66,12 @@ public class HellFire extends BlockFire { this.setFireInfo(b, spread * 4, flamm * 4); } } + + //Special Case madness + this.setFireInfo(Blocks.brown_mushroom_block, 20, 100); + this.setFireInfo(Blocks.red_mushroom_block, 20, 100); + this.setFireInfo(Blocks.grass, 20, 100); + this.setFireInfo(Blocks.mycelium, 20, 100); } |