aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/gregtech/api/init/machines/GregtechIndustrialPlatePress.java
blob: 266263380eacfbbbe89bf23f980ad3506fdcdfd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package miscutil.gregtech.api.init.machines;

import miscutil.gregtech.api.enums.GregtechItemList;
import miscutil.gregtech.common.machines.multi.GregtechMetaTileEntityIndustrialPlatePress;

public class GregtechIndustrialPlatePress
{



	public static void run()
	{
		/*if (miscutil.core.lib.LoadedMods.Gregtech){
			Utils.LOG_INFO("MiscUtils: Gregtech5u Content | Registering Industrial Press Multiblock.");
			run1();
		}*/

	}

	private static void run1()
	{
		//Industrial Centrifuge Multiblock
		GregtechItemList.Industrial_PlatePress.set(new GregtechMetaTileEntityIndustrialPlatePress(792, "industrialbender.controller.tier.single", "Industrial Material Press").getStackForm(1L));
		
	}
}