Some more work on the tree farm

This commit is contained in:
modmuss50 2015-07-13 20:54:32 +01:00
parent ef5d81d8e2
commit 5d574e0540
2 changed files with 103 additions and 37 deletions

View file

@ -25,6 +25,7 @@ import techreborn.blocks.BlockOre;
import techreborn.blocks.BlockStorage;
import techreborn.blocks.BlockStorage2;
import techreborn.config.ConfigTechReborn;
import techreborn.farm.FarmTree;
import techreborn.items.ItemCells;
import techreborn.items.ItemDusts;
import techreborn.items.ItemDustsSmall;
@ -62,6 +63,7 @@ public class ModRecipes {
addBlastFurnaceRecipes();
addIndustrialGrinderRecipes();
addImplosionCompressorRecipes();
addLogs();
}
static void addGeneralShapedRecipes() {
@ -2194,4 +2196,9 @@ public class ModRecipes {
}
static void addLogs(){
FarmTree.harvestableLogs.add(Blocks.log);
FarmTree.harvestableLogs.add(Blocks.log2);
}
}