diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-06-19 17:01:45 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-06-19 17:01:45 +1000 |
commit | a7c8556642aeace0c13db3783a4a15dcac9a8c56 (patch) | |
tree | d5bf9bb8388bcc99b2838f5577a8372435c5a889 /src/Java/miscutil/gregtech/common/GregtechRecipeAdder.java | |
parent | d4f11459f2e78e954a4c060c92861614c114d1cb (diff) | |
download | GT5-Unofficial-a7c8556642aeace0c13db3783a4a15dcac9a8c56.tar.gz GT5-Unofficial-a7c8556642aeace0c13db3783a4a15dcac9a8c56.tar.bz2 GT5-Unofficial-a7c8556642aeace0c13db3783a4a15dcac9a8c56.zip |
~Trying to add Rocket Fuels.
Diffstat (limited to 'src/Java/miscutil/gregtech/common/GregtechRecipeAdder.java')
-rw-r--r-- | src/Java/miscutil/gregtech/common/GregtechRecipeAdder.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/miscutil/gregtech/common/GregtechRecipeAdder.java b/src/Java/miscutil/gregtech/common/GregtechRecipeAdder.java index e3cf25c6ca..77e21f7607 100644 --- a/src/Java/miscutil/gregtech/common/GregtechRecipeAdder.java +++ b/src/Java/miscutil/gregtech/common/GregtechRecipeAdder.java @@ -1,7 +1,6 @@ package miscutil.gregtech.common; import gregtech.api.GregTech_API; -import gregtech.api.util.GT_Recipe; import miscutil.core.util.Utils; import miscutil.gregtech.api.interfaces.internal.IGregtech_RecipeAdder; import miscutil.gregtech.api.util.GregtechRecipe; @@ -106,11 +105,12 @@ public class GregtechRecipeAdder implements IGregtech_RecipeAdder { } } + @Override public boolean addFuel(ItemStack aInput1, ItemStack aOutput1, int aEU, int aType) { if (aInput1 == null) { return false; } - new GT_Recipe(aInput1, aOutput1, GregTech_API.sRecipeFile.get("fuel_" + aType, aInput1, aEU), aType); + new GregtechRecipe(aInput1, aOutput1, GregTech_API.sRecipeFile.get("fuel_" + aType, aInput1, aEU), aType); return true; } |