diff options
| author | Jordan Byrne <draknyte1@hotmail.com> | 2018-02-04 23:55:17 +1000 |
|---|---|---|
| committer | Jordan Byrne <draknyte1@hotmail.com> | 2018-02-04 23:55:17 +1000 |
| commit | 50787529e12663685e9d0657c2e136ff4ae9ff7f (patch) | |
| tree | 283049c442e144eb1a2e43b6ec6cdcacf89851cf /src/Java/gtPlusPlus/xmod/gregtech/registration | |
| parent | c2b4614d54c732c075847e3e8e9e577a18bdceb2 (diff) | |
| download | GT5-Unofficial-50787529e12663685e9d0657c2e136ff4ae9ff7f.tar.gz GT5-Unofficial-50787529e12663685e9d0657c2e136ff4ae9ff7f.tar.bz2 GT5-Unofficial-50787529e12663685e9d0657c2e136ff4ae9ff7f.zip | |
$ Finished the Fishing Pond.
$ Made the Fishing Pond cache reflection data from WeightedRandomFishable objects.
$ Fixed the Fish Pond not outputting correct stack sizes. (They were all 0)
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
| -rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialFishPond.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialFishPond.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialFishPond.java index 0d3d00833f..93f8f7460a 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialFishPond.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialFishPond.java @@ -1,8 +1,9 @@ package gtPlusPlus.xmod.gregtech.registration.gregtech; +import gregtech.api.util.FishPondFakeRecipe; import gtPlusPlus.api.objects.Logger; import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList; -import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.GregtechMetaTileEntity_IndustrialWashPlant; +import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.GregtechMetaTileEntity_IndustrialFishingPond; public class GregtechIndustrialFishPond { @@ -10,14 +11,15 @@ public class GregtechIndustrialFishPond { if (gtPlusPlus.core.lib.LoadedMods.Gregtech) { Logger.INFO("Gregtech5u Content | Registering Industrial Fishing Pond Multiblock."); //if (CORE.ConfigSwitches.enableMultiblock_IndustrialWashPlant) { - run1(); + FishPondFakeRecipe.generateFishPondRecipes(); + run1(); //} } } private static void run1() { - GregtechItemList.Industrial_FishingPond.set(new GregtechMetaTileEntity_IndustrialWashPlant(829, + GregtechItemList.Industrial_FishingPond.set(new GregtechMetaTileEntity_IndustrialFishingPond(829, "industrial.fishpond.controller.tier.single", "Zhuhai - Fishing Port").getStackForm(1L)); } |
