aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/thaumcraft/common/block/TC_BlockHandler.java
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-11-20 23:21:15 +1000
committerAlkalus <draknyte1@hotmail.com>2017-11-20 23:21:15 +1000
commit9d52b3d41d6dfdfb2e61cd59510b3a1d61925a16 (patch)
treecf35ad8eda222d6e69f6084b7f336fbbc9af3fc0 /src/Java/gtPlusPlus/xmod/thaumcraft/common/block/TC_BlockHandler.java
parente480daed410bd80d5eda9abbd37f7bd96021e911 (diff)
downloadGT5-Unofficial-9d52b3d41d6dfdfb2e61cd59510b3a1d61925a16.tar.gz
GT5-Unofficial-9d52b3d41d6dfdfb2e61cd59510b3a1d61925a16.tar.bz2
GT5-Unofficial-9d52b3d41d6dfdfb2e61cd59510b3a1d61925a16.zip
+ Added the Upgraded Arcane Alembic.$ Fixed the Upgraded Alchemy Furnace GUI.
% Tried to make the 'Upgraded' Alembic & Furnace work better with the vanilla TC versions. $ Fixed the Upgraded Alchemy Furnace causing the tesselator to throw issues. $ Fixes to the Upgraded Arcane Alembic.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/thaumcraft/common/block/TC_BlockHandler.java')
-rw-r--r--src/Java/gtPlusPlus/xmod/thaumcraft/common/block/TC_BlockHandler.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/Java/gtPlusPlus/xmod/thaumcraft/common/block/TC_BlockHandler.java b/src/Java/gtPlusPlus/xmod/thaumcraft/common/block/TC_BlockHandler.java
index fade8601f0..0b8d18f7d2 100644
--- a/src/Java/gtPlusPlus/xmod/thaumcraft/common/block/TC_BlockHandler.java
+++ b/src/Java/gtPlusPlus/xmod/thaumcraft/common/block/TC_BlockHandler.java
@@ -4,10 +4,12 @@ import net.minecraft.block.Block;
public class TC_BlockHandler {
- static Block blockFurnace;
-
+ public static Block blockFastAlchemyFurnace;
+ public static Block blockFastArcaneAlembic;
+
public static void run(){
- blockFurnace = new BlockFastAlchemyFurnace();
+ blockFastAlchemyFurnace = new BlockFastAlchemyFurnace();
+ blockFastArcaneAlembic = new BlockFastArcaneAlembic();
}
-
+
}