diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-10-21 06:08:51 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-10-21 06:08:51 +1000 |
commit | 77e7efe4f6ce3f6562c86569bbc831caa16ebf8d (patch) | |
tree | 363044e96429ecc4d3cb5065497ae16e6d75a578 /src/Java/gtPlusPlus/xmod/gregtech/loaders | |
parent | 47463aad337204f1821e873d8f93b625e9abc0dc (diff) | |
download | GT5-Unofficial-77e7efe4f6ce3f6562c86569bbc831caa16ebf8d.tar.gz GT5-Unofficial-77e7efe4f6ce3f6562c86569bbc831caa16ebf8d.tar.bz2 GT5-Unofficial-77e7efe4f6ce3f6562c86569bbc831caa16ebf8d.zip |
% Cleaned up tank tooltips.
- Removed all old code now not required by tanks.
- Removed the GT4 workbench classes, favourite my homebrew ones.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java index 5cda3ac867..8a92d34a8e 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java @@ -1,6 +1,6 @@ package gtPlusPlus.xmod.gregtech.loaders; -import gregtech.api.metatileentity.BaseMetaTileEntityEx; +import gregtech.api.metatileentity.BaseMetaTileEntity; import gtPlusPlus.core.block.ModBlocks; import gtPlusPlus.core.util.Utils; import gtPlusPlus.xmod.gregtech.common.Meta_GT_Proxy; @@ -26,7 +26,7 @@ public class Gregtech_Blocks { private static void registerDefailtGtTe(){ Utils.LOG_INFO("Registering new GT TileEntities."); - BaseMetaTileEntityEx tBaseMetaTileEntity = Meta_GT_Proxy.constructBaseMetaTileEntity(); + BaseMetaTileEntity tBaseMetaTileEntity = Meta_GT_Proxy.constructBaseMetaTileEntity(); Utils.LOG_INFO("Testing BaseMetaTileEntity."); if (tBaseMetaTileEntity == null) { |