Skip to content
This repository was archived by the owner on May 26, 2024. It is now read-only.

Commit d42582d

Browse files
authored
Added missing fruits to the TGS (#858)
Added missing fruits
1 parent 015dec0 commit d42582d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_TreeFarm.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ private static void generateVanillaTrees() {
8080
new ItemStack(Blocks.sapling, 1, 5),
8181
new ItemStack(Blocks.log2, 1, 1),
8282
new ItemStack(Blocks.leaves2, 1, 1),
83-
null);
83+
new ItemStack(Items.apple, 1, 0));
8484

8585
GregtechMetaTileEntityTreeFarm.registerTreeProducts( // Brown Mushroom
8686
new ItemStack(Blocks.brown_mushroom, 1, 0),
@@ -255,7 +255,7 @@ private static void generateNaturaTrees() {
255255
GT_ModHandler.getModItem(Mods.Natura.ID, "florasapling", 1, 5),
256256
GT_ModHandler.getModItem(Mods.Natura.ID, "bloodwood", 1, 0),
257257
GT_ModHandler.getModItem(Mods.Natura.ID, "floraleavesnocolor", 1, 2),
258-
null);
258+
new ItemStack(Items.redstone, 1, 0));
259259

260260
GregtechMetaTileEntityTreeFarm.registerTreeProducts( // Darkwood
261261
GT_ModHandler.getModItem(Mods.Natura.ID, "florasapling", 1, 6),
@@ -401,7 +401,7 @@ private static void generateBOPTrees() {
401401
GT_ModHandler.getModItem(Mods.BiomesOPlenty.ID, "saplings", 1, 13),
402402
GT_ModHandler.getModItem(Mods.BiomesOPlenty.ID, "logs4", 1, 1),
403403
GT_ModHandler.getModItem(Mods.BiomesOPlenty.ID, "leaves4", 1, 0),
404-
null);
404+
GT_ModHandler.getModItem(Mods.BiomesOPlenty.ID, "food", 1, 8));
405405

406406
GregtechMetaTileEntityTreeFarm.registerTreeProducts( // Jacaranda
407407
GT_ModHandler.getModItem(Mods.BiomesOPlenty.ID, "saplings", 1, 14),

0 commit comments

Comments
 (0)