aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/registration
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-02-04 23:55:17 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-02-04 23:55:17 +1000
commit50787529e12663685e9d0657c2e136ff4ae9ff7f (patch)
tree283049c442e144eb1a2e43b6ec6cdcacf89851cf /src/Java/gtPlusPlus/xmod/gregtech/registration
parentc2b4614d54c732c075847e3e8e9e577a18bdceb2 (diff)
downloadGT5-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.java8
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));
}