Skip to content

Commit 36a66c0

Browse files
committed
Bump version to 1.1.12
* HOTFIX: 64A converters were not properly respecting the high tier content config
1 parent 0b4fca0 commit 36a66c0

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/main/java/net/neganote/gtutilities/recipe/UtilRecipes.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package net.neganote.gtutilities.recipe;
22

3+
import com.gregtechceu.gtceu.api.GTCEuAPI;
34
import com.gregtechceu.gtceu.api.GTValues;
45
import com.gregtechceu.gtceu.api.data.tag.TagPrefix;
56
import 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))

0 commit comments

Comments
 (0)