diff options
author | Alkalus <draknyte1@hotmail.com> | 2020-04-14 19:22:46 +0000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2020-04-14 19:22:46 +0000 |
commit | bc0b4b644dd410c86c925c7ef2422bd18789437c (patch) | |
tree | dd96160d195653e79ceaf6f18b982f4f5f5a265d /src/Java/gtPlusPlus/xmod/gregtech/loaders/misc | |
parent | e724a728061ec4a78cff73a4a2dd46eea4af4521 (diff) | |
parent | 994cb1962434737cf3cfadc06361db2f2cec2020 (diff) | |
download | GT5-Unofficial-bc0b4b644dd410c86c925c7ef2422bd18789437c.tar.gz GT5-Unofficial-bc0b4b644dd410c86c925c7ef2422bd18789437c.tar.bz2 GT5-Unofficial-bc0b4b644dd410c86c925c7ef2422bd18789437c.zip |
Merged in RecipeVerification(pull request #8)
Recipe verification
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders/misc')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/loaders/misc/AddCustomMachineToPA.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/misc/AddCustomMachineToPA.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/misc/AddCustomMachineToPA.java index 321cab4628..e84ce73a47 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/misc/AddCustomMachineToPA.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/misc/AddCustomMachineToPA.java @@ -2,7 +2,7 @@ package gtPlusPlus.xmod.gregtech.loaders.misc; import java.lang.reflect.Method; -import gregtech.api.util.Recipe_GT; +import gregtech.api.util.GTPP_Recipe; import gregtech.api.util.GT_Recipe.GT_Recipe_Map; import gtPlusPlus.core.util.reflect.ReflectionUtils; @@ -43,8 +43,8 @@ public class AddCustomMachineToPA { public static void register() { // Simple Washers - registerRecipeMapForID(767, Recipe_GT.Gregtech_Recipe_Map.sSimpleWasherRecipes); - registerRecipeMapBetweenRangeOfIDs(31017, 31020, Recipe_GT.Gregtech_Recipe_Map.sSimpleWasherRecipes); + registerRecipeMapForID(767, GTPP_Recipe.GTPP_Recipe_Map.sSimpleWasherRecipes); + registerRecipeMapBetweenRangeOfIDs(31017, 31020, GTPP_Recipe.GTPP_Recipe_Map.sSimpleWasherRecipes); } |