diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-05-27 15:41:04 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-05-27 15:41:04 +1000 |
commit | b20fad29ca4e6ad5de25080e212ab5257692afa5 (patch) | |
tree | a83c378cac103dac82a32b0508212109b5ac0d04 /src/Java/gtPlusPlus/core/handler | |
parent | 0c3d983f6bfa7ada1c85a6176f599a3ea4bb8d2a (diff) | |
download | GT5-Unofficial-b20fad29ca4e6ad5de25080e212ab5257692afa5.tar.gz GT5-Unofficial-b20fad29ca4e6ad5de25080e212ab5257692afa5.tar.bz2 GT5-Unofficial-b20fad29ca4e6ad5de25080e212ab5257692afa5.zip |
+ Added some modular base tree (Log/Leaf/Sapling) classes.
+ Added BoP Rainforest Trees (Still need a bit of work).
Diffstat (limited to 'src/Java/gtPlusPlus/core/handler')
-rw-r--r-- | src/Java/gtPlusPlus/core/handler/COMPAT_IntermodStaging.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/handler/COMPAT_IntermodStaging.java b/src/Java/gtPlusPlus/core/handler/COMPAT_IntermodStaging.java index bf43c464e3..2b5115dd69 100644 --- a/src/Java/gtPlusPlus/core/handler/COMPAT_IntermodStaging.java +++ b/src/Java/gtPlusPlus/core/handler/COMPAT_IntermodStaging.java @@ -1,6 +1,7 @@ package gtPlusPlus.core.handler; import gtPlusPlus.xmod.Computronics.HANDLER_Computronics; +import gtPlusPlus.xmod.bop.HANDLER_BiomesOPlenty; import gtPlusPlus.xmod.forestry.HANDLER_FR; import gtPlusPlus.xmod.gregtech.HANDLER_GT; import gtPlusPlus.xmod.growthcraft.HANDLER_GC; @@ -16,6 +17,7 @@ public class COMPAT_IntermodStaging { HANDLER_FR.preInit(); HANDLER_IC2.preInit(); HANDLER_Computronics.preInit(); + HANDLER_BiomesOPlenty.preInit(); } @@ -26,6 +28,7 @@ public class COMPAT_IntermodStaging { HANDLER_FR.Init(); HANDLER_IC2.init(); HANDLER_Computronics.init(); + HANDLER_BiomesOPlenty.init(); } public static void postInit(){ @@ -35,6 +38,7 @@ public class COMPAT_IntermodStaging { HANDLER_FR.postInit(); HANDLER_IC2.postInit(); HANDLER_Computronics.postInit(); + HANDLER_BiomesOPlenty.postInit(); } |