File tree Expand file tree Collapse file tree
src/main/java/net/neganote/gtutilities/recipe Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # GregTech Modern Utilities version 1.1.11
1+ # GregTech Modern Utilities version 1.1.12
22
3- * Fix terminal problems (as much as possible) and remove warning about building PTERB with terminal
3+ * HOTFIX: 64A converters were not properly respecting the high tier content config
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ org.gradle.jvmargs=-Xmx1G
1111 mapping_version =2023.09.03-1.20.1
1212
1313# Mod Properties
14- mod_version =1.1.11
14+ mod_version =1.1.12
1515 maven_group =net.neganote.gtmutils
1616 archives_base_name =gtmutils
1717 mod_id =gtmutils
Original file line number Diff line number Diff line change 11package net .neganote .gtutilities .recipe ;
22
3+ import com .gregtechceu .gtceu .api .GTCEuAPI ;
34import com .gregtechceu .gtceu .api .GTValues ;
45import com .gregtechceu .gtceu .api .data .tag .TagPrefix ;
56import com .gregtechceu .gtceu .common .data .GTItems ;
@@ -56,7 +57,7 @@ public static void init(Consumer<FinishedRecipe> provider) {
5657 }
5758
5859 public static void register64AConverterRecipes (Consumer <FinishedRecipe > provider ) {
59- for (int tier : GTValues .tiersBetween (GTValues .ULV , GTValues .MAX )) {
60+ for (int tier : GTValues .tiersBetween (GTValues .ULV , GTCEuAPI . isHighTier () ? GTValues .MAX : GTValues . UHV )) {
6061 ASSEMBLER_RECIPES .recipeBuilder ("converter_64a_" + GTValues .VN [tier ])
6162 .inputItems (HULL .getIngredient (tier ))
6263 .inputItems (CIRCUIT .getIngredient (tier ))
You can’t perform that action at this time.
0 commit comments