diff options
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/thermalfoundation/block')
| -rw-r--r-- | src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidEnder.java | 2 | ||||
| -rw-r--r-- | src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidPyrotheum.java | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidEnder.java b/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidEnder.java index 1f7c1fec93..98b0912497 100644 --- a/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidEnder.java +++ b/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidEnder.java @@ -17,7 +17,7 @@ import gtPlusPlus.xmod.thermalfoundation.fluid.TFFluids; public class TFBlockFluidEnder extends BlockFluidCoFHBase { public static final Material materialFluidEnder = new MaterialLiquid(MapColor.greenColor); - private static boolean effect = true; + private static final boolean effect = true; public TFBlockFluidEnder() { super(GTPlusPlus.ID, TFFluids.fluidEnder, materialFluidEnder, "ender"); diff --git a/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidPyrotheum.java b/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidPyrotheum.java index 1014667355..ebefa49ecd 100644 --- a/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidPyrotheum.java +++ b/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlockFluidPyrotheum.java @@ -52,13 +52,8 @@ public class TFBlockFluidPyrotheum extends BlockFluidInteractive { for (int i = 0; i < 8; i++) { this.addInteraction(Blocks.stone_stairs, i, Blocks.stone_brick_stairs, i); } - final String str1 = "Fluid.Pyrotheum"; - String str2 = "Enable this for Fluid Pyrotheum to be worse than lava."; effect = true; - - str2 = "Enable this for Fluid Pyrotheum Source blocks to gradually fall downwards."; enableSourceFall = true; - return true; } |
