blob: 7a8c160feb38086bd862b56d4e1ae65e148fbb24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package gtPlusPlus.xmod.gregtech.registration.gregtech;
import gtPlusPlus.api.objects.Logger;
import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList;
import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.production.GregtechMetaTileEntity_Cyclotron;
public class GregtechCyclotron {
public static void run() {
Logger.INFO("Gregtech5u Content | Registering COMET Cyclotron.");
run1();
}
private static void run1() {
GregtechItemList.COMET_Cyclotron.set(
new GregtechMetaTileEntity_Cyclotron(828, "cyclotron.tier.single", "COMET - Compact Cyclotron", 6)
.getStackForm(1L));
}
}
|