From 1bf64acab22cf9faafc3841eedf2da6ffd2df2b5 Mon Sep 17 00:00:00 2001 From: Martin Robertz Date: Thu, 9 Jan 2025 16:21:17 +0100 Subject: [PATCH 1/2] update --- dependencies.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependencies.gradle b/dependencies.gradle index e4e7bf8631c..6ea1cf604b5 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -85,7 +85,7 @@ dependencies { compileOnly('com.github.GTNewHorizons:HoloInventory:2.5.0-GTNH:dev') { transitive = false } compileOnly rfg.deobf("curse.maven:extra-utilities-225561:2264384") compileOnly rfg.deobf('curse.maven:minefactory-reloaded-66672:2366150') - compileOnly("com.github.GTNewHorizons:OpenComputers:1.11.2-GTNH:dev") {transitive = false} + compileOnly("com.github.GTNewHorizons:OpenComputers:1.11.3-GTNH:dev") {transitive = false} // https://www.curseforge.com/minecraft/mc-mods/advancedsolarpanels compileOnlyApi rfg.deobf('curse.maven:advsolar-362768:2885953') compileOnly('com.github.GTNewHorizons:ThaumicEnergistics:1.7.2-GTNH:dev') {transitive = false} From 374b972b7b2c622770f89fff382316393ac49fd3 Mon Sep 17 00:00:00 2001 From: Yoshy <60155833+Yoshy2002@users.noreply.github.com> Date: Thu, 9 Jan 2025 18:12:58 +0100 Subject: [PATCH 2/2] Add perfect Isolation to CRIB Tooltip (#3768) --- .../common/tileentities/machines/MTEHatchCraftingInputME.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/gregtech/common/tileentities/machines/MTEHatchCraftingInputME.java b/src/main/java/gregtech/common/tileentities/machines/MTEHatchCraftingInputME.java index cb57fb85db6..79c683f4610 100644 --- a/src/main/java/gregtech/common/tileentities/machines/MTEHatchCraftingInputME.java +++ b/src/main/java/gregtech/common/tileentities/machines/MTEHatchCraftingInputME.java @@ -352,7 +352,8 @@ public MTEHatchCraftingInputME(int aID, String aName, String aNameRegional, bool "Processes patterns directly from ME", supportFluids ? "It supports patterns including fluids" : "It does not support patterns including fluids", - "Change ME connection behavior by right-clicking with wire cutter" }); + "Change ME connection behavior by right-clicking with wire cutter", + "Ignores the contents of other buses or hatches", "Also ignores other patterns within the same bus" }); disableSort = true; this.supportFluids = supportFluids; }