From 915139115434ff5797df6f82a63578e938864016 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sun, 3 Apr 2016 18:14:21 +1000 Subject: Finally, Got everything working how I want. Only thing left to do is the anti-grief block. Fixed Buffer Cores, now there is 10 tiers, all with a unique colour and recipe. Energy Buffers have had their recipes revised, due to new recipes for the cores. Steam condenser may need tweaking, but for now, I'll let it slide and players test it. Updated a few graphics too, the Staballoy Axe and Pickaxe, the Buffer Core and the New Hammer Tool all received visual updates. Compiled build and Dev. build will be up shortly. --- src/Java/miscutil/gregtech/enums/AddExtraOreDict.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/Java/miscutil/gregtech/enums/AddExtraOreDict.java') diff --git a/src/Java/miscutil/gregtech/enums/AddExtraOreDict.java b/src/Java/miscutil/gregtech/enums/AddExtraOreDict.java index 4b3e352292..171bdda533 100644 --- a/src/Java/miscutil/gregtech/enums/AddExtraOreDict.java +++ b/src/Java/miscutil/gregtech/enums/AddExtraOreDict.java @@ -1,16 +1,13 @@ package miscutil.gregtech.enums; -import gregtech.api.util.GT_OreDictUnificator; import gregtech.loaders.preload.GT_Loader_OreDictionary; -import miscutil.gregtech.init.machines.GregtechEnergyBuffer; -import net.minecraft.item.ItemStack; public class AddExtraOreDict extends GT_Loader_OreDictionary { @Override public void run() { - GT_OreDictUnificator.registerOre(ExtraOreDictNames.buffer_core, new ItemStack(GregtechEnergyBuffer.itemBufferCore)); + //GT_OreDictUnificator.registerOre(ExtraOreDictNames.buffer_core, new ItemStack(GregtechEnergyBuffer.itemBufferCore)); } } -- cgit