From 12ced6d3ea25823190453b4db9b7b905cc759a69 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Mon, 23 May 2016 08:42:20 +1000 Subject: Fixed Casing Block creative tab registration. Swapped textures. Removing uptime from the next commit forward. (Think it causes weird issues, due to bad code merging) --- .../gregtech/common/blocks/GregtechMetaCasingBlocksAbstract.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Java/miscutil/gregtech/common/blocks/GregtechMetaCasingBlocksAbstract.java') diff --git a/src/Java/miscutil/gregtech/common/blocks/GregtechMetaCasingBlocksAbstract.java b/src/Java/miscutil/gregtech/common/blocks/GregtechMetaCasingBlocksAbstract.java index 4080db753a..d4ac2a03c3 100644 --- a/src/Java/miscutil/gregtech/common/blocks/GregtechMetaCasingBlocksAbstract.java +++ b/src/Java/miscutil/gregtech/common/blocks/GregtechMetaCasingBlocksAbstract.java @@ -1,8 +1,8 @@ package miscutil.gregtech.common.blocks; import gregtech.api.GregTech_API; -import gregtech.api.items.GT_Generic_Block; import gregtech.api.util.GT_LanguageManager; +import gregtech.common.blocks.GT_Block_Casings_Abstract; import java.util.Random; @@ -22,7 +22,7 @@ import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; public abstract class GregtechMetaCasingBlocksAbstract - extends GT_Generic_Block { + extends GT_Block_Casings_Abstract { public GregtechMetaCasingBlocksAbstract(Class aItemClass, String aName, Material aMaterial) { super(aItemClass, aName, aMaterial); setStepSound(soundTypeMetal); -- cgit