aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java
diff options
context:
space:
mode:
authorAlkalus <Draknyte1@hotmail.com>2020-03-28 20:32:11 +0000
committerAlkalus <Draknyte1@hotmail.com>2020-03-28 20:32:11 +0000
commita3c8210a4318f34cbe46306cb1c829f41650515d (patch)
treec1415ec21d67729464f6597fdf0d1a875edc13ac /src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java
parent254f1af84f1a673523aa936acada7d5b1c1a91c3 (diff)
downloadGT5-Unofficial-a3c8210a4318f34cbe46306cb1c829f41650515d.tar.gz
GT5-Unofficial-a3c8210a4318f34cbe46306cb1c829f41650515d.tar.bz2
GT5-Unofficial-a3c8210a4318f34cbe46306cb1c829f41650515d.zip
+ Added Materials for the new LNR fuels.
+ Added a new casing block class for special handled multiblock casings. + Added locale for Naq Fuel Cells. $ Reworked TAE. There are now 19 texture slots free out of the 64 total. $ Fixed a minor bug in the update checker.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java
index 535dfb3faa..6292417e0b 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/Gregtech_Blocks.java
@@ -1,32 +1,25 @@
package gtPlusPlus.xmod.gregtech.loaders;
-import gregtech.api.enums.TAE;
-import gregtech.api.enums.Textures;
-
-import gtPlusPlus.api.objects.Logger;
import gtPlusPlus.core.block.ModBlocks;
import gtPlusPlus.xmod.gregtech.common.blocks.GregtechMetaCasingBlocks;
import gtPlusPlus.xmod.gregtech.common.blocks.GregtechMetaCasingBlocks2;
import gtPlusPlus.xmod.gregtech.common.blocks.GregtechMetaCasingBlocks3;
import gtPlusPlus.xmod.gregtech.common.blocks.GregtechMetaCasingBlocks4;
+import gtPlusPlus.xmod.gregtech.common.blocks.GregtechMetaSpecialMultiCasings;
import gtPlusPlus.xmod.gregtech.common.blocks.GregtechMetaTieredCasingBlocks1;
public class Gregtech_Blocks {
public static void run(){
-
- //Logger.INFO("Expanding Gregtech Texture Array from 128 -> 1024.");
- boolean didExpand = TAE.hookGtTextures();
- //Logger.INFO("Did Texture Array expand correctly? "+didExpand);
- Logger.INFO("|======| Texture Array Length: "+Textures.BlockIcons.CASING_BLOCKS.length+" |======|");
//Casing Blocks
ModBlocks.blockCasingsMisc = new GregtechMetaCasingBlocks();
ModBlocks.blockCasings2Misc = new GregtechMetaCasingBlocks2();
ModBlocks.blockCasings3Misc = new GregtechMetaCasingBlocks3();
ModBlocks.blockCasings4Misc = new GregtechMetaCasingBlocks4();
-
+
ModBlocks.blockCasingsTieredGTPP = new GregtechMetaTieredCasingBlocks1();
+ ModBlocks.blockSpecialMultiCasings = new GregtechMetaSpecialMultiCasings();
}
}