From af27ff015c4197bb5a6ddb7dd38769f8950a4ac9 Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Mon, 4 Mar 2019 18:26:33 +0000 Subject: + Added more TC wrappers. --- .../thaumcraft/aspect/TC_ResearchPage_Wrapper.java | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchPage_Wrapper.java') diff --git a/src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchPage_Wrapper.java b/src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchPage_Wrapper.java index 256e9c19ed..23d3a9f575 100644 --- a/src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchPage_Wrapper.java +++ b/src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchPage_Wrapper.java @@ -1,6 +1,11 @@ package gtPlusPlus.xmod.thaumcraft.aspect; import java.util.List; + +import gtPlusPlus.xmod.thaumcraft.objects.wrapper.recipe.TC_CrucibleRecipe_Wrapper; +import gtPlusPlus.xmod.thaumcraft.objects.wrapper.recipe.TC_IArcaneRecipe_Wrapper; +import gtPlusPlus.xmod.thaumcraft.objects.wrapper.recipe.TC_InfusionEnchantmentRecipe_Wrapper; +import gtPlusPlus.xmod.thaumcraft.objects.wrapper.recipe.TC_InfusionRecipe_Wrapper; import net.minecraft.item.ItemStack; import net.minecraft.item.crafting.FurnaceRecipes; import net.minecraft.item.crafting.IRecipe; @@ -66,7 +71,7 @@ public class TC_ResearchPage_Wrapper { this.recipe = recipe; } - public TC_ResearchPage_Wrapper(IArcaneRecipe[] recipe) { + public TC_ResearchPage_Wrapper(TC_IArcaneRecipe_Wrapper[] recipe) { this.type = TC_PageType_Wrapper.TEXT; this.text = null; this.research = null; @@ -78,7 +83,7 @@ public class TC_ResearchPage_Wrapper { this.recipe = recipe; } - public TC_ResearchPage_Wrapper(CrucibleRecipe[] recipe) { + public TC_ResearchPage_Wrapper(TC_CrucibleRecipe_Wrapper[] recipe) { this.type = TC_PageType_Wrapper.TEXT; this.text = null; this.research = null; @@ -90,7 +95,7 @@ public class TC_ResearchPage_Wrapper { this.recipe = recipe; } - public TC_ResearchPage_Wrapper(InfusionRecipe[] recipe) { + public TC_ResearchPage_Wrapper(TC_InfusionRecipe_Wrapper[] recipe) { this.type = TC_PageType_Wrapper.TEXT; this.text = null; this.research = null; @@ -114,7 +119,7 @@ public class TC_ResearchPage_Wrapper { this.recipe = recipe; } - public TC_ResearchPage_Wrapper(IArcaneRecipe recipe) { + public TC_ResearchPage_Wrapper(TC_IArcaneRecipe_Wrapper recipe) { this.type = TC_PageType_Wrapper.TEXT; this.text = null; this.research = null; @@ -127,7 +132,7 @@ public class TC_ResearchPage_Wrapper { this.recipeOutput = recipe.getRecipeOutput(); } - public TC_ResearchPage_Wrapper(CrucibleRecipe recipe) { + public TC_ResearchPage_Wrapper(TC_CrucibleRecipe_Wrapper recipe) { this.type = TC_PageType_Wrapper.TEXT; this.text = null; this.research = null; @@ -153,7 +158,7 @@ public class TC_ResearchPage_Wrapper { this.recipeOutput = FurnaceRecipes.smelting().getSmeltingResult(input); } - public TC_ResearchPage_Wrapper(InfusionRecipe recipe) { + public TC_ResearchPage_Wrapper(TC_InfusionRecipe_Wrapper recipe) { this.type = TC_PageType_Wrapper.TEXT; this.text = null; this.research = null; @@ -171,7 +176,7 @@ public class TC_ResearchPage_Wrapper { } - public TC_ResearchPage_Wrapper(InfusionEnchantmentRecipe recipe) { + public TC_ResearchPage_Wrapper(TC_InfusionEnchantmentRecipe_Wrapper recipe) { this.type = TC_PageType_Wrapper.TEXT; this.text = null; this.research = null; -- cgit