aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dependencies.gradle2
-rw-r--r--src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_CircuitAssemblyLine.java5
2 files changed, 6 insertions, 1 deletions
diff --git a/dependencies.gradle b/dependencies.gradle
index a3af242a3f..4f3ab08a1f 100644
--- a/dependencies.gradle
+++ b/dependencies.gradle
@@ -1,7 +1,7 @@
// Add your dependencies here
dependencies {
- api('com.github.GTNewHorizons:GT5-Unofficial:5.09.43.158:dev')
+ api('com.github.GTNewHorizons:GT5-Unofficial:5.09.43.168:dev')
api("com.github.GTNewHorizons:TecTech:5.2.35:dev")
api("com.github.GTNewHorizons:GalacticGregGT5:1.0.9:dev") {
exclude group:"com.github.GTNewHorizons", module:"bartworks"
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_CircuitAssemblyLine.java b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_CircuitAssemblyLine.java
index e46199d654..28cc85941f 100644
--- a/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_CircuitAssemblyLine.java
+++ b/src/main/java/com/github/bartimaeusnek/bartworks/common/tileentities/multis/GT_TileEntity_CircuitAssemblyLine.java
@@ -450,4 +450,9 @@ public class GT_TileEntity_CircuitAssemblyLine extends
String imprintedWith = getTypeForDisplay();
if (!imprintedWith.isEmpty()) tag.setString("ImprintedWith", imprintedWith);
}
+
+ @Override
+ protected boolean supportsCraftingMEBuffer() {
+ return false;
+ }
}