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

Added missing fruits to the TGS #858

Merged
merged 1 commit into from
Mar 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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