diff options
| author | MadMan310 <66886359+MadMan310@users.noreply.github.com> | 2022-10-07 12:05:23 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-07 21:05:23 +0200 |
| commit | feba52916774639c0f4076160ab75b2a7e926a49 (patch) | |
| tree | ed008effaae36923e70ced9d785d4225c0a0cf10 /src/main/java/gtPlusPlus/xmod/gregtech/registration | |
| parent | b2d57d8d8c8ad427b19a662101bff1c8a23e2a93 (diff) | |
| download | GT5-Unofficial-feba52916774639c0f4076160ab75b2a7e926a49.tar.gz GT5-Unofficial-feba52916774639c0f4076160ab75b2a7e926a49.tar.bz2 GT5-Unofficial-feba52916774639c0f4076160ab75b2a7e926a49.zip | |
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
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/registration')
| -rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialBlastSmelter.java | 4 |
1 files changed, 4 insertions, 0 deletions
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)); } } |
