From feba52916774639c0f4076160ab75b2a7e926a49 Mon Sep 17 00:00:00 2001 From: MadMan310 <66886359+MadMan310@users.noreply.github.com> Date: Fri, 7 Oct 2022 12:05:23 -0700 Subject: Mega Alloy Blast Smelter (#394) * Initial commit * added BW dependancy & runtime * dimmminsishing returns on coil discount, fix other stuff * Coil discount is now a linear function * spotlessApply * Add recipe * Fixed scanner recipe --- .../registration/gregtech/GregtechIndustrialBlastSmelter.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/registration') diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialBlastSmelter.java b/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialBlastSmelter.java index 2b524610b0..2214aba514 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialBlastSmelter.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialBlastSmelter.java @@ -4,6 +4,7 @@ import gtPlusPlus.api.objects.Logger; import gtPlusPlus.core.lib.CORE; import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList; import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.production.GregtechMetaTileEntity_AlloyBlastSmelter; +import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.production.mega.GregTechMetaTileEntity_MegaAlloyBlastSmelter; public class GregtechIndustrialBlastSmelter { @@ -21,5 +22,8 @@ public class GregtechIndustrialBlastSmelter { GregtechItemList.Industrial_AlloyBlastSmelter.set(new GregtechMetaTileEntity_AlloyBlastSmelter( 810, "industrialsalloyamelter.controller.tier.single", "Alloy Blast Smelter") .getStackForm(1L)); + GregtechItemList.Mega_AlloyBlastSmelter.set(new GregTechMetaTileEntity_MegaAlloyBlastSmelter( + 31150, "industrialsalloyamelter.controller.tier.mega", "Mega Alloy Blast Smelter") + .getStackForm(1L)); } } -- cgit