From 1934796eb5ad5627c2189a05fd7504e4512644dd Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Mon, 7 Aug 2017 20:04:02 +1000 Subject: + 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. --- .../xmod/gregtech/registration/gregtech/GregtechCyclotron.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration') 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)); + } + } -- cgit