aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/bop/HANDLER_BiomesOPlenty.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/bop/HANDLER_BiomesOPlenty.java')
-rw-r--r--src/Java/gtPlusPlus/xmod/bop/HANDLER_BiomesOPlenty.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/bop/HANDLER_BiomesOPlenty.java b/src/Java/gtPlusPlus/xmod/bop/HANDLER_BiomesOPlenty.java
new file mode 100644
index 0000000000..2c109b8834
--- /dev/null
+++ b/src/Java/gtPlusPlus/xmod/bop/HANDLER_BiomesOPlenty.java
@@ -0,0 +1,31 @@
+package gtPlusPlus.xmod.bop;
+
+import gtPlusPlus.core.lib.LoadedMods;
+import gtPlusPlus.xmod.bop.blocks.BOP_Block_Registrator;
+
+public class HANDLER_BiomesOPlenty {
+
+
+
+ public static void preInit(){
+ if (LoadedMods.BiomesOPlenty){
+ BOP_Block_Registrator.run();
+ }
+
+ }
+
+ public static void init(){
+ if (LoadedMods.BiomesOPlenty){
+
+ }
+ }
+
+ public static void postInit(){
+ if (LoadedMods.BiomesOPlenty){
+
+ }
+
+ }
+
+
+}