diff options
author | Alexandre Tardif <alexandre.tardif@nexusinno.com> | 2022-07-30 01:57:49 -0400 |
---|---|---|
committer | Alexandre Tardif <alexandre.tardif@nexusinno.com> | 2022-07-30 01:57:49 -0400 |
commit | 1bf8a27be246ff9253065524a88d994ab56948f3 (patch) | |
tree | 9024f034a4207dccf695ecd7891632efece6c2e2 | |
parent | 2cfa4e316f91229038e1de4432872118230e487a (diff) | |
download | GT5-Unofficial-1bf8a27be246ff9253065524a88d994ab56948f3.tar.gz GT5-Unofficial-1bf8a27be246ff9253065524a88d994ab56948f3.tar.bz2 GT5-Unofficial-1bf8a27be246ff9253065524a88d994ab56948f3.zip |
Add a recipe for the Front rotation tool.
-rw-r--r-- | src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java b/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java index 23bf1d308e..e77e057d94 100644 --- a/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java +++ b/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java @@ -51,13 +51,13 @@ public class BaseRecipeLoader { new ItemStack(StructureLibAPI.getBlockHint(), 1, i), 32, 120); } - //Scrench -// GT_ModHandler.addCraftingRecipe(new ItemStack(FrontRotationTriggerItem.INSTANCE,1), -// GT_ModHandler.RecipeBits.BUFFERED | GT_ModHandler.RecipeBits.NOT_REMOVABLE, -// new Object[]{"fPR", " RP", "S h", -// 'P', OrePrefixes.plate.get(Materials.Cobalt), -// 'R', OrePrefixes.stick.get(Materials.Cobalt), -// 'S', OrePrefixes.stick.get(Materials.Wood),}); + //Front Rotation Tool + GT_ModHandler.addCraftingRecipe(GT_ModHandler.getModItem(StructureLibAPI.MOD_ID, "item.structurelib.frontRotationTool", 1L, 0), + GT_ModHandler.RecipeBits.BUFFERED | GT_ModHandler.RecipeBits.NOT_REMOVABLE, + new Object[]{"fPR", " RP", "S h", + 'P', OrePrefixes.plate.get(Materials.Cobalt), + 'R', OrePrefixes.stick.get(Materials.Cobalt), + 'S', OrePrefixes.stick.get(Materials.Wood),}); //BLUEprint // GT_ModHandler.addShapelessCraftingRecipe(new ItemStack(ConstructableTriggerItem.INSTANCE, 1), |