diff options
author | miozune <miozune@gmail.com> | 2023-05-18 16:50:29 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-18 09:50:29 +0200 |
commit | 00a4eba06cc03f2a0082d647b1be72c04c3beaf0 (patch) | |
tree | abbf64147b82ee05c626848dabc9e4673e23afcf | |
parent | 7b653d3397661b3d52909db066ec8c9a8e53db2c (diff) | |
download | GT5-Unofficial-00a4eba06cc03f2a0082d647b1be72c04c3beaf0.tar.gz GT5-Unofficial-00a4eba06cc03f2a0082d647b1be72c04c3beaf0.tar.bz2 GT5-Unofficial-00a4eba06cc03f2a0082d647b1be72c04c3beaf0.zip |
Don't add cell recipe for Replicator if dust one is already available (#2005)
-rw-r--r-- | build.gradle | 4 | ||||
-rw-r--r-- | dependencies.gradle | 26 | ||||
-rw-r--r-- | src/main/java/gregtech/loaders/postload/GT_PostLoad.java | 1 |
3 files changed, 16 insertions, 15 deletions
diff --git a/build.gradle b/build.gradle index 8bbb6e9280..a8b7532dea 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,4 @@ -//version: 1684139283 +//version: 1684218858 /* DO NOT CHANGE THIS FILE! Also, you may replace this file at any time if there is an update available. @@ -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 bb015a5b93..3b30ba93ef 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -34,32 +34,32 @@ * For more details, see https://docs.gradle.org/8.0.1/userguide/java_library_plugin.html#sec:java_library_configurations_graph */ dependencies { - api("com.github.GTNewHorizons:StructureLib:1.2.6:dev") + api("com.github.GTNewHorizons:StructureLib:1.2.7:dev") api("net.industrial-craft:industrialcraft-2:2.2.828-experimental:dev") - api("com.github.GTNewHorizons:NotEnoughItems:2.3.46-GTNH:dev") + api("com.github.GTNewHorizons:NotEnoughItems:2.3.53-GTNH:dev") api("com.github.GTNewHorizons:GTNHLib:0.0.13:dev") api("com.github.GTNewHorizons:ModularUI:1.1.7:dev") - api("com.github.GTNewHorizons:waila:1.5.24:dev") + api("com.github.GTNewHorizons:waila:1.6.0:dev") api("com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-213-GTNH:dev") implementation("com.github.GTNewHorizons:Eternal-Singularity:1.1.0:dev") compileOnlyApi("com.github.GTNewHorizons:AppleCore:3.2.10:dev") { transitive = false } compileOnlyApi("com.github.GTNewHorizons:BuildCraft:7.1.33:dev") { transitive = false } - compileOnlyApi("com.github.GTNewHorizons:EnderIO:2.4.10:dev") { transitive = false } - compileOnlyApi("com.github.GTNewHorizons:ForestryMC:4.6.3:dev") { transitive = false } + compileOnlyApi("com.github.GTNewHorizons:EnderIO:2.4.16:dev") { transitive = false } + compileOnlyApi("com.github.GTNewHorizons:ForestryMC:4.6.7:dev") { transitive = false } compileOnlyApi("com.github.GTNewHorizons:ProjectRed:4.7.9-GTNH:dev") { transitive = false } - compileOnlyApi("com.github.GTNewHorizons:Railcraft:9.13.18:dev") { transitive = false } + compileOnlyApi("com.github.GTNewHorizons:Railcraft:9.14.1:dev") { transitive = false } - compileOnly("com.github.GTNewHorizons:EnderCore:0.2.12:dev") { transitive = false } - compileOnly("com.github.GTNewHorizons:Galacticraft:3.0.65-GTNH:dev") { transitive = false } - compileOnly("com.github.GTNewHorizons:TinkersConstruct:1.9.23-GTNH:dev") { transitive = false } - compileOnly("com.github.GTNewHorizons:Chisel:2.10.17-GTNH:dev") { transitive = false } + compileOnly("com.github.GTNewHorizons:EnderCore:0.2.13:dev") { transitive = false } + compileOnly("com.github.GTNewHorizons:Galacticraft:3.0.68-GTNH:dev") { transitive = false } + compileOnly("com.github.GTNewHorizons:TinkersConstruct:1.9.32-GTNH:dev") { transitive = false } + compileOnly("com.github.GTNewHorizons:Chisel:2.11.0-GTNH:dev") { transitive = false } compileOnly("com.github.GTNewHorizons:Translocators:1.1.2.21:dev") { transitive = false } compileOnly("curse.maven:cofh-core-69162:2388751") { transitive = false } - compileOnly("com.github.GTNewHorizons:Nuclear-Control:2.4.16:dev") { transitive = false } + compileOnly("com.github.GTNewHorizons:Nuclear-Control:2.4.19:dev") { transitive = false } compileOnly("thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev") { transitive = false } - compileOnly("com.github.GTNewHorizons:Hodgepodge:2.2.8:dev") { transitive = false } - compileOnly('com.github.GTNewHorizons:Botania:1.9.22-GTNH:dev') { transitive = false } + compileOnly("com.github.GTNewHorizons:Hodgepodge:2.2.13:dev") { transitive = false } + compileOnly('com.github.GTNewHorizons:Botania:1.9.23-GTNH:dev') { transitive = false } compileOnly("com.google.auto.value:auto-value-annotations:1.10.1") { transitive = false } annotationProcessor("com.google.auto.value:auto-value:1.10.1") diff --git a/src/main/java/gregtech/loaders/postload/GT_PostLoad.java b/src/main/java/gregtech/loaders/postload/GT_PostLoad.java index 54ef19a9d0..f2e802620a 100644 --- a/src/main/java/gregtech/loaders/postload/GT_PostLoad.java +++ b/src/main/java/gregtech/loaders/postload/GT_PostLoad.java @@ -301,6 +301,7 @@ public class GT_PostLoad { (int) (tMaterial.getMass() * 512L), (int) VP[1], 0); + return; } tInput = GT_OreDictUnificator.get(OrePrefixes.cell, tMaterial, 1L); iSMat0 = new ItemStack[] { tInput }; |