diff options
| author | Draknyte1 <Draknyte1@hotmail.com> | 2017-04-30 15:36:43 +1000 |
|---|---|---|
| committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-04-30 15:36:43 +1000 |
| commit | b21648b4c0e0ad51dc7df2c50948ecc601c7044b (patch) | |
| tree | 4a0d84bf7cf45da9519943515d79c0b953cdb6e2 /src/Java/gtPlusPlus/core/recipe | |
| parent | b8fcf82060c66cc383f7be9c3a5d064a718cbffa (diff) | |
| download | GT5-Unofficial-b21648b4c0e0ad51dc7df2c50948ecc601c7044b.tar.gz GT5-Unofficial-b21648b4c0e0ad51dc7df2c50948ecc601c7044b.tar.bz2 GT5-Unofficial-b21648b4c0e0ad51dc7df2c50948ecc601c7044b.zip | |
$ Fixed dirt not working in the Tree Farmer Frame recipe.
- Removed a touch of old code.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
| -rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java index 6ed81f5df5..6bdef2de4b 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -9,6 +9,7 @@ import gtPlusPlus.core.util.recipe.RecipeUtils; import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList; import gtPlusPlus.xmod.gregtech.api.enums.GregtechOrePrefixes; import gtPlusPlus.xmod.gregtech.api.enums.GregtechOrePrefixes.GT_Materials; +import net.minecraft.init.Blocks; import net.minecraft.init.Items; import net.minecraft.item.ItemStack; @@ -818,7 +819,7 @@ public class RECIPES_Machines { RECIPE_TreeFarmController); //Industrial Tree Farm Frame RecipeUtils.addShapedGregtechRecipe( - "dirt", "dirt", "dirt", + ItemUtils.getSimpleStack(Blocks.dirt), ItemUtils.getSimpleStack(Blocks.dirt), ItemUtils.getSimpleStack(Blocks.dirt), "plankWood", "frameGtTumbaga", "plankWood", "plankWood", "plankWood", "plankWood", RECIPE_TreeFarmFrame); |
