diff options
author | draknyte1 <draknyte1@hotmail.com> | 2017-02-02 10:42:04 +1000 |
---|---|---|
committer | draknyte1 <draknyte1@hotmail.com> | 2017-02-02 10:42:04 +1000 |
commit | 2a688e006c07c1240966c2829906a1752031153c (patch) | |
tree | 67468ecacaa6e77ec2581532e2fe96fcced6b39c /src/Java/gtPlusPlus/xmod/forestry/Forestry.java | |
parent | 233ee8c9a0a1c72953cfa6f7f5a439f2859daaf1 (diff) | |
download | GT5-Unofficial-2a688e006c07c1240966c2829906a1752031153c.tar.gz GT5-Unofficial-2a688e006c07c1240966c2829906a1752031153c.tar.bz2 GT5-Unofficial-2a688e006c07c1240966c2829906a1752031153c.zip |
+ Added a check for BuildCraft.
% Changed handling of Wrench interfaces for the Workbench.
- Removed classes I borrowed from MFR. (useless)
- Removed Psychedelicraft support. (useless)
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/forestry/Forestry.java')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/forestry/Forestry.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Java/gtPlusPlus/xmod/forestry/Forestry.java b/src/Java/gtPlusPlus/xmod/forestry/Forestry.java index b21d9a154d..698e6a8d01 100644 --- a/src/Java/gtPlusPlus/xmod/forestry/Forestry.java +++ b/src/Java/gtPlusPlus/xmod/forestry/Forestry.java @@ -4,8 +4,6 @@ import static cpw.mods.fml.common.registry.GameRegistry.findBlock; import static cpw.mods.fml.common.registry.GameRegistry.findItem; import gtPlusPlus.core.lib.CORE; import gtPlusPlus.core.util.Utils; -import gtPlusPlus.xmod.forestry.trees.ForestryLeaf; -import gtPlusPlus.xmod.forestry.trees.ForestrySapling; import net.minecraft.block.Block; import net.minecraft.item.Item; @@ -46,7 +44,7 @@ public class Forestry { item = findItem(name, "sapling"); Block block = findBlock(name, "saplingGE"); if (item != null && block != null) { - ForestrySapling sapling = new ForestrySapling(item, block); + //ForestrySapling sapling = new ForestrySapling(item, block); //MFRRegistry.registerPlantable(sapling); //MFRRegistry.registerFertilizable(sapling); } else @@ -100,7 +98,7 @@ public class Forestry { block = findBlock(name, "leaves"); if (block != null) { - ForestryLeaf leaf = new ForestryLeaf(block); + //ForestryLeaf leaf = new ForestryLeaf(block); //MFRRegistry.registerFertilizable(leaf); //MFRRegistry.registerHarvestable(leaf); //MFRRegistry.registerFruit(leaf); |