aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java')
-rw-r--r--src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java b/src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java
index 8052b98dac..ff26064e98 100644
--- a/src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java
+++ b/src/Java/gtPlusPlus/xmod/forestry/HANDLER_FR.java
@@ -1,34 +1,34 @@
package gtPlusPlus.xmod.forestry;
-import cpw.mods.fml.common.registry.GameRegistry;
import gtPlusPlus.core.lib.CORE;
import gtPlusPlus.core.lib.LoadedMods;
import gtPlusPlus.xmod.forestry.bees.alveary.TileAlvearyFrameHousing;
import gtPlusPlus.xmod.forestry.bees.items.FR_ItemRegistry;
import gtPlusPlus.xmod.forestry.bees.recipe.FR_Gregtech_Recipes;
+import cpw.mods.fml.common.registry.GameRegistry;
public class HANDLER_FR {
- public static void Init() {
- if (LoadedMods.Forestry) {
- // FR_TileHandler.init();
- // new FR_GuiIDRegistry();
- }
- }
-
- public static void postInit() {
- if (LoadedMods.Forestry) {
- FR_Gregtech_Recipes.registerItems();
- }
- }
-
- public static void preInit() {
- if (LoadedMods.Forestry) {
+ public static void preInit(){
+ if (LoadedMods.Forestry){
FR_ItemRegistry.Register();
- if (CORE.configSwitches.enableCustomAlvearyBlocks) {
+ if (CORE.configSwitches.enableCustomAlvearyBlocks){
GameRegistry.registerTileEntity(TileAlvearyFrameHousing.class, "FrameHousing");
}
- // FR_BlockRegistryApiculture.RegistryApiculture();
- }
+ //FR_BlockRegistryApiculture.RegistryApiculture();
+ }
+ }
+
+ public static void Init(){
+ if (LoadedMods.Forestry){
+ //FR_TileHandler.init();
+ //new FR_GuiIDRegistry();
+ }
}
+
+ public static void postInit(){
+ if (LoadedMods.Forestry){
+ FR_Gregtech_Recipes.registerItems();
+ }
+ }
}