diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-08-07 00:29:01 +0000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-08-07 00:29:01 +0000 |
commit | d03ded134ba8187b5fee535b2b41ad298acaef54 (patch) | |
tree | 2b87c71c99adefcf1d4d67ef3bb7e697a3179456 /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities | |
parent | bd5397dfbd6b2228759f288e2dfc126b0f321be7 (diff) | |
download | GT5-Unofficial-d03ded134ba8187b5fee535b2b41ad298acaef54.tar.gz GT5-Unofficial-d03ded134ba8187b5fee535b2b41ad298acaef54.tar.bz2 GT5-Unofficial-d03ded134ba8187b5fee535b2b41ad298acaef54.zip |
+ Added custom Cyclotron casing & coil blocks.
+ More Cyclotron work.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_Cyclotron.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_Cyclotron.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_Cyclotron.java index 329177a4a4..91f07f79d6 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_Cyclotron.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_Cyclotron.java @@ -202,19 +202,19 @@ public abstract class GregtechMetaTileEntity_Cyclotron extends GT_MetaTileEntity } public Block getCasing() { - return GregTech_API.sBlockCasings4; + return ModBlocks.blockCasings2Misc; } public int getCasingMeta() { - return 0; + return 10; } public Block getCyclotronCoil() { - return GregTech_API.sBlockCasings4; + return ModBlocks.blockCasings2Misc; } public int getCyclotronCoilMeta() { - return 0; + return 9; } @Override |