diff options
author | miozune <miozune@gmail.com> | 2022-08-17 17:58:29 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-17 10:58:29 +0200 |
commit | b34041b645d5ab0803382706b030473bbdf0f664 (patch) | |
tree | 065dd0ad28f396120a7e36303b29ef4010b3fb57 /src/main/java/gregtech/api | |
parent | 8679aa3e6de7ec8c40ccef994580f799219f8e07 (diff) | |
download | GT5-Unofficial-b34041b645d5ab0803382706b030473bbdf0f664.tar.gz GT5-Unofficial-b34041b645d5ab0803382706b030473bbdf0f664.tar.bz2 GT5-Unofficial-b34041b645d5ab0803382706b030473bbdf0f664.zip |
Flotation Cell fixes (#271)
* Flotation Cell fixes
* Add info on type locking
* address review
Diffstat (limited to 'src/main/java/gregtech/api')
-rw-r--r-- | src/main/java/gregtech/api/util/GTPP_Recipe.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/api/util/GTPP_Recipe.java b/src/main/java/gregtech/api/util/GTPP_Recipe.java index dba084d26d..323977a348 100644 --- a/src/main/java/gregtech/api/util/GTPP_Recipe.java +++ b/src/main/java/gregtech/api/util/GTPP_Recipe.java @@ -294,7 +294,7 @@ public class GTPP_Recipe extends GT_Recipe implements IComparableRecipe { public static final GT_Recipe_Map_Fuel sSemiFluidLiquidFuels = new GT_Recipe_Map_Fuel(new HashSet<GT_Recipe>(10), "gtpp.recipe.semifluidgeneratorfuels", "Semifluid Generator Fuels", null, RES_PATH_GUI + "basicmachines/Default", 1, 1, 0, 0, 1, "Fuel Value: ", 1000, " EU", true, true); // Flotation Cell - public static final GTPP_Recipe_Map_Internal sFlotationCellRecipes = new GTPP_Recipe_Map_Internal(new HashSet<GT_Recipe>(10000), "gtpp.recipe.flotationcell", "Flotation Cell", null, RES_PATH_GUI + "basicmachines/LFTR", 6, 4, 1, 1, 1, "Ore Key: ", 1, E, true, true); + public static final GTPP_Recipe_Map_Internal sFlotationCellRecipes = new GTPP_Recipe_Map_Internal(new HashSet<GT_Recipe>(10000), "gtpp.recipe.flotationcell", "Flotation Cell", null, RES_PATH_GUI + "basicmachines/LFTR", 6, 4, 1, 1, 1, "", 1, E, true, true); // Tree Growth Simulator public static final GTPP_Recipe_Map_Internal sTreeSimFakeRecipes = new GTPP_Recipe_Map_MultiNoCell(new HashSet<GT_Recipe>(100), "gtpp.recipe.treefarm", "Tree Growth Simulator", null, RES_PATH_GUI + "basicmachines/FissionFuel", 9, 9, 1, 0, 1, "", 1, "", false, true); |