aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-08-07 00:29:01 +0000
committerAlkalus <draknyte1@hotmail.com>2017-08-07 00:29:01 +0000
commitd03ded134ba8187b5fee535b2b41ad298acaef54 (patch)
tree2b87c71c99adefcf1d4d67ef3bb7e697a3179456 /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities
parentbd5397dfbd6b2228759f288e2dfc126b0f321be7 (diff)
downloadGT5-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.java8
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