aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2017-03-04 12:58:47 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2017-03-04 12:58:47 +1000
commitae21012d216df71f31aed6fbc9d76215fc24ceed (patch)
treecc89accbe6ce5c04b72ed3c5e46b2a185f88be6a /src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java
parentba89972a22a316030f8c3bd99974f915b1d7aefc (diff)
downloadGT5-Unofficial-ae21012d216df71f31aed6fbc9d76215fc24ceed.tar.gz
GT5-Unofficial-ae21012d216df71f31aed6fbc9d76215fc24ceed.tar.bz2
GT5-Unofficial-ae21012d216df71f31aed6fbc9d76215fc24ceed.zip
+ New texture for the slow builders ring.
+ Added the Alkalus Disk. $ Fixed Frame Box Assembler Recipes. $ Fixed Missing 7Li material. $ Fixed Tiered Tanks not showing their capacity in the tooltip. $ Fixed tooltips for alloys containing Bronze or Steel. $ Fixed Clay Pipe Extruder Recipes. - Removed a handful of Plasma cells for misc. materials. % Changed the Industrial Coke Oven's tooltip, to better describe the input/output requirements. % Cleaned up The Entire Project.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java')
-rw-r--r--src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java b/src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java
index e92aa40ca2..9d19af17b8 100644
--- a/src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java
+++ b/src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java
@@ -1,5 +1,6 @@
package gtPlusPlus.xmod.forestry;
+import cpw.mods.fml.common.Optional;
import forestry.core.proxy.Proxies;
import gtPlusPlus.core.lib.CORE;
import gtPlusPlus.core.lib.LoadedMods;
@@ -8,43 +9,42 @@ import gtPlusPlus.xmod.forestry.bees.items.FR_ItemRegistry;
import gtPlusPlus.xmod.forestry.bees.recipe.FR_Gregtech_Recipes;
import net.minecraft.block.Block;
import net.minecraft.world.World;
-import cpw.mods.fml.common.Optional;
public class HANDLER_FR {
- public static void preInit(){
+ public static void preInit(){
if (LoadedMods.Forestry){
FR_ItemRegistry.Register();
if (CORE.configSwitches.enableCustomAlvearyBlocks){
AlvearyHandler.run();
}
- }
+ }
}
public static void Init(){
if (LoadedMods.Forestry){
-
- }
+
+ }
}
public static void postInit(){
if (LoadedMods.Forestry){
- FR_Gregtech_Recipes.registerItems();
- }
- }
-
- public static boolean createBlockBreakParticles(World world, int x, int y, int z, Block block){
+ FR_Gregtech_Recipes.registerItems();
+ }
+ }
+
+ public static boolean createBlockBreakParticles(final World world, final int x, final int y, final int z, final Block block){
if (LoadedMods.Forestry){
createBlockBreakParticles_INTERNAL(world, x, y, z, block);
}
return false;
}
-
+
@Optional.Method(modid = "Forestry")
- private static void createBlockBreakParticles_INTERNAL(World world, int x, int y, int z, Block block){
+ private static void createBlockBreakParticles_INTERNAL(final World world, final int x, final int y, final int z, final Block block){
Proxies.common.addBlockDestroyEffects(world, x, y, z, block, 0);
}
-
-
+
+
}