From 4af770de7faa9f6816d0cfd51858c5c5b77e758a Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Thu, 24 May 2018 08:12:44 +1000 Subject: + Added a new interface RunnableWithInfo.java. Allows passing through type V and an object, for extra manipulation during runnable events where required. $ Further improvements to the recipe generation system. Added safety catches in case a particular material is having issues, so as not to corrupt the whole map. $ Added extra maps for recipes that get added from auto-generation elsewhere. Cached maps should also register to be run upon creation. --- src/Java/gtPlusPlus/xmod/forestry/bees/custom/GTPP_Bees.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/forestry/bees') diff --git a/src/Java/gtPlusPlus/xmod/forestry/bees/custom/GTPP_Bees.java b/src/Java/gtPlusPlus/xmod/forestry/bees/custom/GTPP_Bees.java index e2a67197d3..29ece40c3d 100644 --- a/src/Java/gtPlusPlus/xmod/forestry/bees/custom/GTPP_Bees.java +++ b/src/Java/gtPlusPlus/xmod/forestry/bees/custom/GTPP_Bees.java @@ -21,6 +21,7 @@ import gtPlusPlus.api.objects.Logger; import gtPlusPlus.core.item.base.ingots.BaseItemIngot_OLD; import gtPlusPlus.core.item.base.misc.BaseItemMisc; import gtPlusPlus.core.item.base.misc.BaseItemMisc.MiscTypes; +import gtPlusPlus.core.material.MaterialGenerator; import gtPlusPlus.core.util.Utils; import gtPlusPlus.core.util.minecraft.FluidUtils; import gtPlusPlus.core.util.minecraft.ItemUtils; @@ -109,8 +110,8 @@ public class GTPP_Bees { addExtractorRecipe(ItemUtils.getSimpleStack(dropFluorineBlob), FluidUtils.getFluidStack("fluorine", 4)); } - private boolean addExtractorRecipe(ItemStack input, FluidStack output){ - return GT_Values.RA.addFluidExtractionRecipe( + private void addExtractorRecipe(ItemStack input, FluidStack output){ + MaterialGenerator.addFluidExtractionRecipe( input, null, output, -- cgit