aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/bop/HANDLER_BiomesOPlenty.java
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2019-08-18 14:21:15 +0100
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2019-08-18 14:21:15 +0100
commit3e5978d2684b3c76ef365490f29162d66f7f8377 (patch)
treedb3066e4a16360cccd2a465762ac4a97a802d5b5 /src/Java/gtPlusPlus/xmod/bop/HANDLER_BiomesOPlenty.java
parent46d5bb75a9bfc5c9731b9476006b060328ca34d6 (diff)
downloadGT5-Unofficial-3e5978d2684b3c76ef365490f29162d66f7f8377.tar.gz
GT5-Unofficial-3e5978d2684b3c76ef365490f29162d66f7f8377.tar.bz2
GT5-Unofficial-3e5978d2684b3c76ef365490f29162d66f7f8377.zip
$ Improved Rainforest Oak Handling, recipes are now generated as expected. Fixes #454.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/bop/HANDLER_BiomesOPlenty.java')
-rw-r--r--src/Java/gtPlusPlus/xmod/bop/HANDLER_BiomesOPlenty.java14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/Java/gtPlusPlus/xmod/bop/HANDLER_BiomesOPlenty.java b/src/Java/gtPlusPlus/xmod/bop/HANDLER_BiomesOPlenty.java
index b152be46b1..9d646e3eb5 100644
--- a/src/Java/gtPlusPlus/xmod/bop/HANDLER_BiomesOPlenty.java
+++ b/src/Java/gtPlusPlus/xmod/bop/HANDLER_BiomesOPlenty.java
@@ -1,13 +1,6 @@
package gtPlusPlus.xmod.bop;
-import net.minecraft.init.Blocks;
-import net.minecraft.item.Item;
-import net.minecraft.item.ItemStack;
-
import gtPlusPlus.core.lib.LoadedMods;
-import gtPlusPlus.core.recipe.common.CI;
-import gtPlusPlus.core.util.minecraft.ItemUtils;
-import gtPlusPlus.core.util.minecraft.RecipeUtils;
import gtPlusPlus.xmod.bop.blocks.BOP_Block_Registrator;
public class HANDLER_BiomesOPlenty {
@@ -29,12 +22,7 @@ public class HANDLER_BiomesOPlenty {
public static void postInit(){
if (LoadedMods.BiomesOPlenty){
- RecipeUtils.addShapelessGregtechRecipe(new ItemStack[] {ItemUtils.getSimpleStack(BOP_Block_Registrator.log_Rainforest)}, ItemUtils.getSimpleStack(Item.getItemFromBlock(Blocks.planks), 2));
- RecipeUtils.recipeBuilder(
- CI.craftingToolSaw, null, null,
- ItemUtils.getSimpleStack(BOP_Block_Registrator.log_Rainforest), null, null,
- null, null, null,
- ItemUtils.getSimpleStack(Item.getItemFromBlock(Blocks.planks), 4));
+ BOP_Block_Registrator.recipes();
}
}