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

Commit

Permalink
Added missing fruits to the TGS (#858)
Browse files Browse the repository at this point in the history
Added missing fruits
  • Loading branch information
AbdielKavash authored Mar 24, 2024
1 parent 015dec0 commit d42582d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private static void generateVanillaTrees() {
new ItemStack(Blocks.sapling, 1, 5),
new ItemStack(Blocks.log2, 1, 1),
new ItemStack(Blocks.leaves2, 1, 1),
null);
new ItemStack(Items.apple, 1, 0));

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

GregtechMetaTileEntityTreeFarm.registerTreeProducts( // Darkwood
GT_ModHandler.getModItem(Mods.Natura.ID, "florasapling", 1, 6),
Expand Down Expand Up @@ -401,7 +401,7 @@ private static void generateBOPTrees() {
GT_ModHandler.getModItem(Mods.BiomesOPlenty.ID, "saplings", 1, 13),
GT_ModHandler.getModItem(Mods.BiomesOPlenty.ID, "logs4", 1, 1),
GT_ModHandler.getModItem(Mods.BiomesOPlenty.ID, "leaves4", 1, 0),
null);
GT_ModHandler.getModItem(Mods.BiomesOPlenty.ID, "food", 1, 8));

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

0 comments on commit d42582d

Please sign in to comment.