aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/registration
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2017-08-07 20:04:02 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2017-08-07 20:04:02 +1000
commit1934796eb5ad5627c2189a05fd7504e4512644dd (patch)
tree2a65a88c27516361f14bee8f45614e18e4a1982c /src/Java/gtPlusPlus/xmod/gregtech/registration
parente733ec9759368981c39f5e494551b17ce020de30 (diff)
downloadGT5-Unofficial-1934796eb5ad5627c2189a05fd7504e4512644dd.tar.gz
GT5-Unofficial-1934796eb5ad5627c2189a05fd7504e4512644dd.tar.bz2
GT5-Unofficial-1934796eb5ad5627c2189a05fd7504e4512644dd.zip
+ Added Cyber_A and Cyber_B textures.
% Cleaned up GT4Entity_ThermalBoiler.java. $ GregtechMetaTileEntity_Cyclotron.java now conforms to a proper tile entity. $ Fixed Cyclotron load declaration.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCyclotron.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCyclotron.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCyclotron.java
index 94d2446a74..44b10d81cf 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCyclotron.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCyclotron.java
@@ -2,19 +2,19 @@ package gtPlusPlus.xmod.gregtech.registration.gregtech;
import gtPlusPlus.core.util.Utils;
import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList;
-import gtPlusPlus.xmod.gregtech.common.tileentities.generators.GregtechMetaTileEntity_RTG;
+import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.GregtechMetaTileEntity_Cyclotron;
public class GregtechCyclotron {
public static void run(){
if (gtPlusPlus.core.lib.LoadedMods.Gregtech){
Utils.LOG_INFO("Gregtech5u Content | Registering COMET Cyclotron.");
- run1();
+ run1();
}
}
private static void run1(){
- GregtechItemList.COMET_Cyclotron.set(new GregtechMetaTileEntity_Cyclotron(801, "cyclotron.tier.single", "COMET - Compact Cyclotron").getStackForm(1L));
- }
-
+ GregtechItemList.COMET_Cyclotron.set(new GregtechMetaTileEntity_Cyclotron(801, "cyclotron.tier.single", "COMET - Compact Cyclotron", 6).getStackForm(1L));
+ }
+
}