diff options
author | Connor-Colenso <52056774+Connor-Colenso@users.noreply.github.com> | 2022-07-30 23:45:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-30 23:45:38 +0100 |
commit | 9b3e91be8feadc3d908b997c028a6d39cf119fc1 (patch) | |
tree | 286bd15defe13430f694f98e486803f1ea526c94 /src/main/java/com | |
parent | e89046e46970efe32ab54fefd8d4562a1d3980df (diff) | |
parent | 1bf8a27be246ff9253065524a88d994ab56948f3 (diff) | |
download | GT5-Unofficial-9b3e91be8feadc3d908b997c028a6d39cf119fc1.tar.gz GT5-Unofficial-9b3e91be8feadc3d908b997c028a6d39cf119fc1.tar.bz2 GT5-Unofficial-9b3e91be8feadc3d908b997c028a6d39cf119fc1.zip |
Merge pull request #63 from alexandre-tardif/fix/recipe-front-rotation-tool
Add a recipe for the Front rotation tool
Diffstat (limited to 'src/main/java/com')
-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), |