diff options
| author | Jordan Byrne <draknyte1@hotmail.com> | 2018-02-04 20:25:22 +1000 |
|---|---|---|
| committer | Jordan Byrne <draknyte1@hotmail.com> | 2018-02-04 20:25:22 +1000 |
| commit | df07c3247fe4c44c7c3539eecbc2af69bc305b49 (patch) | |
| tree | abf68870cc92bb61514e5e2e8de942ae413e2c60 /src/Java/gtPlusPlus/xmod/gregtech/registration | |
| parent | d10ed0cdab2df584b867177de85f897f83bad187 (diff) | |
| download | GT5-Unofficial-df07c3247fe4c44c7c3539eecbc2af69bc305b49.tar.gz GT5-Unofficial-df07c3247fe4c44c7c3539eecbc2af69bc305b49.tar.bz2 GT5-Unofficial-df07c3247fe4c44c7c3539eecbc2af69bc305b49.zip | |
+ Added more casings for multiblocks.
+ Added the Fish Pond.
$ Added support for more textures in TAE.java.
- Disabled GT ASM.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
| -rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialFishPond.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialFishPond.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialFishPond.java new file mode 100644 index 0000000000..0d3d00833f --- /dev/null +++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialFishPond.java @@ -0,0 +1,24 @@ +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.GregtechMetaTileEntity_IndustrialWashPlant; + +public class GregtechIndustrialFishPond { + + public static void run() { + if (gtPlusPlus.core.lib.LoadedMods.Gregtech) { + Logger.INFO("Gregtech5u Content | Registering Industrial Fishing Pond Multiblock."); + //if (CORE.ConfigSwitches.enableMultiblock_IndustrialWashPlant) { + run1(); + //} + } + + } + + private static void run1() { + GregtechItemList.Industrial_FishingPond.set(new GregtechMetaTileEntity_IndustrialWashPlant(829, + "industrial.fishpond.controller.tier.single", "Zhuhai - Fishing Port").getStackForm(1L)); + + } +}
\ No newline at end of file |
