diff options
author | miozune <miozune@gmail.com> | 2023-05-17 04:43:59 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-16 21:43:59 +0200 |
commit | 9a4cc346fdaa159ff231c1f70b40b9729c0081fc (patch) | |
tree | bb5c70cc90ca7cb4160aa96570198fea2f715b1d | |
parent | 3a4b5705aba728ed2f344a430331ac4d858a25b9 (diff) | |
download | GT5-Unofficial-9a4cc346fdaa159ff231c1f70b40b9729c0081fc.tar.gz GT5-Unofficial-9a4cc346fdaa159ff231c1f70b40b9729c0081fc.tar.bz2 GT5-Unofficial-9a4cc346fdaa159ff231c1f70b40b9729c0081fc.zip |
Add Fluid Solidifier recipes for Shirabon (#161)
-rw-r--r-- | build.gradle | 6 | ||||
-rw-r--r-- | dependencies.gradle | 10 | ||||
-rw-r--r-- | src/main/java/goodgenerator/items/MyMaterial.java | 3 |
3 files changed, 10 insertions, 9 deletions
diff --git a/build.gradle b/build.gradle index 3fa171e0dd..a8b7532dea 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,4 @@ -//version: 1683705740 +//version: 1684218858 /* DO NOT CHANGE THIS FILE! Also, you may replace this file at any time if there is an update available. @@ -69,7 +69,7 @@ plugins { id 'com.diffplug.spotless' version '6.13.0' apply false // 6.13.0 is the last jvm8 supporting version id 'com.modrinth.minotaur' version '2.+' apply false id 'com.matthewprenger.cursegradle' version '1.4.0' apply false - id 'com.gtnewhorizons.retrofuturagradle' version '1.3.11' + id 'com.gtnewhorizons.retrofuturagradle' version '1.3.14' } print("You might want to check out './gradlew :faq' if your build fails.\n") @@ -730,7 +730,7 @@ dependencies { java17Dependencies("com.github.GTNewHorizons:lwjgl3ify:${lwjgl3ifyVersion}") } if (modId != 'hodgepodge') { - java17Dependencies('com.github.GTNewHorizons:Hodgepodge:2.2.8') + java17Dependencies('com.github.GTNewHorizons:Hodgepodge:2.2.13') } java17PatchDependencies('net.minecraft:launchwrapper:1.15') {transitive = false} diff --git a/dependencies.gradle b/dependencies.gradle index 6bde48d946..532731339b 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -1,14 +1,14 @@ // Add your dependencies here dependencies { - api('com.github.GTNewHorizons:GT5-Unofficial:5.09.43.33:dev') - api('com.github.GTNewHorizons:bartworks:0.7.6:dev') + api('com.github.GTNewHorizons:GT5-Unofficial:5.09.43.37:dev') + api('com.github.GTNewHorizons:bartworks:0.7.7:dev') implementation('thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev') - implementation('com.github.GTNewHorizons:GTplusplus:1.9.5:dev') + implementation('com.github.GTNewHorizons:GTplusplus:1.9.11:dev') compileOnly('com.github.GTNewHorizons:ExtraCells2:2.5.34:dev') {transitive = false} - compileOnly('com.github.GTNewHorizons:ThaumicEnergistics:1.4.1-GTNH:dev') {transitive = false} + compileOnly('com.github.GTNewHorizons:ThaumicEnergistics:1.4.2-GTNH:dev') {transitive = false} - runtimeOnly('com.github.GTNewHorizons:NewHorizonsCoreMod:2.1.13:dev') + runtimeOnly('com.github.GTNewHorizons:NewHorizonsCoreMod:2.1.21:dev') runtimeOnly('com.github.GTNewHorizons:Baubles:1.0.1.16:dev') } diff --git a/src/main/java/goodgenerator/items/MyMaterial.java b/src/main/java/goodgenerator/items/MyMaterial.java index bbdf2ee289..70f12fb04f 100644 --- a/src/main/java/goodgenerator/items/MyMaterial.java +++ b/src/main/java/goodgenerator/items/MyMaterial.java @@ -1236,7 +1236,8 @@ public class MyMaterial implements Runnable { .setSpeedOverride(640.0F).setDurOverride(15728640).setQualityOverride((byte) 26), Werkstoff.Types.ELEMENT, new Werkstoff.GenerationFeatures().onlyDust().addMolten().addMetalItems().addCraftingMetalWorkingItems() - .addSimpleMetalWorkingItems().addMultipleIngotMetalWorkingItems(), + .addSimpleMetalWorkingItems().addMultipleIngotMetalWorkingItems() + .addMetalCraftingSolidifierRecipes().addMetaSolidifierRecipes(), OffsetID + 111, TextureSet.SET_SHINY); |