diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-04 23:59:02 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-04 23:59:02 +1000 |
commit | 6a4ad84be99da0171540548f396ed3b44eab2806 (patch) | |
tree | ee9573a6587ea86a74e9e393f1b05dee4b9c580a /src/Java/miscutil/xmod/gregtech/registration | |
parent | 1d02aed53ddbb672b1ab0e339514c3a4a9651211 (diff) | |
download | GT5-Unofficial-6a4ad84be99da0171540548f396ed3b44eab2806.tar.gz GT5-Unofficial-6a4ad84be99da0171540548f396ed3b44eab2806.tar.bz2 GT5-Unofficial-6a4ad84be99da0171540548f396ed3b44eab2806.zip |
% Tried moving my recipe map to extend the GT_Recipe.
Diffstat (limited to 'src/Java/miscutil/xmod/gregtech/registration')
-rw-r--r-- | src/Java/miscutil/xmod/gregtech/registration/gregtech/GregtechDehydrator.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/Java/miscutil/xmod/gregtech/registration/gregtech/GregtechDehydrator.java b/src/Java/miscutil/xmod/gregtech/registration/gregtech/GregtechDehydrator.java index d5b61eae7a..a4949bc292 100644 --- a/src/Java/miscutil/xmod/gregtech/registration/gregtech/GregtechDehydrator.java +++ b/src/Java/miscutil/xmod/gregtech/registration/gregtech/GregtechDehydrator.java @@ -1,11 +1,11 @@ package miscutil.xmod.gregtech.registration.gregtech; +import gregtech.api.metatileentity.implementations.GT_MetaTileEntity_BasicMachine_GT_Recipe; +import gregtech.api.util.Recipe_GT; import miscutil.core.lib.CORE; import miscutil.core.lib.LoadedMods; import miscutil.core.util.Utils; import miscutil.xmod.gregtech.api.enums.GregtechItemList; -import miscutil.xmod.gregtech.api.metatileentity.implementations.base.GT_MTE_BasicMachine_Custom_Recipe; -import miscutil.xmod.gregtech.api.util.GregtechRecipe; public class GregtechDehydrator { @@ -38,10 +38,10 @@ public class GregtechDehydrator */ - GregtechItemList.GT_Dehydrator_EV.set(new GT_MTE_BasicMachine_Custom_Recipe( + GregtechItemList.GT_Dehydrator_EV.set(new GT_MetaTileEntity_BasicMachine_GT_Recipe( 813, "advancedmachine.dehydrator.tier.01", "Chemical Dehydrator I", 4, "Remind Alkalus to add something here."+System.getProperty("line.separator")+CORE.GT_Tooltip, - GregtechRecipe.Gregtech_Recipe_Map.sChemicalDehydratorRecipes, + Recipe_GT.Gregtech_Recipe_Map.sChemicalDehydratorRecipes, 2, 9, 10000, 2, 5, @@ -50,10 +50,10 @@ public class GregtechDehydrator 0, "UNBOXINATOR", null).getStackForm(1L)); - GregtechItemList.GT_Dehydrator_IV.set(new GT_MTE_BasicMachine_Custom_Recipe( + GregtechItemList.GT_Dehydrator_IV.set(new GT_MetaTileEntity_BasicMachine_GT_Recipe( 814, "advancedmachine.dehydrator.tier.02", "Chemical Dehydrator II", 5, "Remind Alkalus to add something here."+System.getProperty("line.separator")+CORE.GT_Tooltip, - GregtechRecipe.Gregtech_Recipe_Map.sChemicalDehydratorRecipes, + Recipe_GT.Gregtech_Recipe_Map.sChemicalDehydratorRecipes, 2, 9, 10000, 2, 5, @@ -62,10 +62,10 @@ public class GregtechDehydrator 0, "UNBOXINATOR", null).getStackForm(1L)); - GregtechItemList.GT_Dehydrator_LuV.set(new GT_MTE_BasicMachine_Custom_Recipe( + GregtechItemList.GT_Dehydrator_LuV.set(new GT_MetaTileEntity_BasicMachine_GT_Recipe( 815, "advancedmachine.dehydrator.tier.03", "Chemical Dehydrator III", 6, "Remind Alkalus to add something here."+System.getProperty("line.separator")+CORE.GT_Tooltip, - GregtechRecipe.Gregtech_Recipe_Map.sChemicalDehydratorRecipes, + Recipe_GT.Gregtech_Recipe_Map.sChemicalDehydratorRecipes, 2, 9, 10000, 2, 5, @@ -74,10 +74,10 @@ public class GregtechDehydrator 0, "UNBOXINATOR", null).getStackForm(1L)); - GregtechItemList.GT_Dehydrator_ZPM.set(new GT_MTE_BasicMachine_Custom_Recipe( + GregtechItemList.GT_Dehydrator_ZPM.set(new GT_MetaTileEntity_BasicMachine_GT_Recipe( 816, "advancedmachine.dehydrator.tier.04", "Chemical Dehydrator IV", 7, "Remind Alkalus to add something here."+System.getProperty("line.separator")+CORE.GT_Tooltip, - GregtechRecipe.Gregtech_Recipe_Map.sChemicalDehydratorRecipes, + Recipe_GT.Gregtech_Recipe_Map.sChemicalDehydratorRecipes, 2, 9, 10000, 2, 5, |