diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-05-24 14:59:49 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-05-24 14:59:49 +1000 |
commit | 2859490274895866f864e66ba7ac18882b0dfb53 (patch) | |
tree | 8d9159b619c87dc99386ef4ae9d3a6f2e5c1867f /src/Java/miscutil/gregtech/api/init/machines/GregtechIndustrialPlatePress.java | |
parent | 83595f2379850fadcd17d91dfec49c87fdfd02a3 (diff) | |
download | GT5-Unofficial-2859490274895866f864e66ba7ac18882b0dfb53.tar.gz GT5-Unofficial-2859490274895866f864e66ba7ac18882b0dfb53.tar.bz2 GT5-Unofficial-2859490274895866f864e66ba7ac18882b0dfb53.zip |
+Industrial Press
+New Coke Oven GUI
+Changed casings internally.
+3 Coke Oven Recipes.
Diffstat (limited to 'src/Java/miscutil/gregtech/api/init/machines/GregtechIndustrialPlatePress.java')
-rw-r--r-- | src/Java/miscutil/gregtech/api/init/machines/GregtechIndustrialPlatePress.java | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/Java/miscutil/gregtech/api/init/machines/GregtechIndustrialPlatePress.java b/src/Java/miscutil/gregtech/api/init/machines/GregtechIndustrialPlatePress.java new file mode 100644 index 0000000000..78f05b157c --- /dev/null +++ b/src/Java/miscutil/gregtech/api/init/machines/GregtechIndustrialPlatePress.java @@ -0,0 +1,27 @@ +package miscutil.gregtech.api.init.machines; + +import miscutil.core.util.Utils; +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)); + + } +}
\ No newline at end of file |