aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/tileentities/machines/ISmartInputHatch.java
diff options
context:
space:
mode:
authorSampsa <69092953+S4mpsa@users.noreply.github.com>2024-07-29 23:50:33 +0300
committerGitHub <noreply@github.com>2024-07-29 23:50:33 +0300
commitbbe59c0de8cc6a65369671789123319354148347 (patch)
tree3d1c984857f6345d356c0072d2b0d15f39986a45 /src/main/java/gregtech/common/tileentities/machines/ISmartInputHatch.java
parent078a7800baa7ad01f268f53363ced60034811948 (diff)
downloadGT5-Unofficial-bbe59c0de8cc6a65369671789123319354148347.tar.gz
GT5-Unofficial-bbe59c0de8cc6a65369671789123319354148347.tar.bz2
GT5-Unofficial-bbe59c0de8cc6a65369671789123319354148347.zip
Optimize recipe check forcing and add a button to enable/disable (#2785)
Disable expecited recipe check by default and add a button to enable behavior + optimize
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/machines/ISmartInputHatch.java')
-rw-r--r--src/main/java/gregtech/common/tileentities/machines/ISmartInputHatch.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/ISmartInputHatch.java b/src/main/java/gregtech/common/tileentities/machines/ISmartInputHatch.java
index 951dea4abf..dc5cac45f8 100644
--- a/src/main/java/gregtech/common/tileentities/machines/ISmartInputHatch.java
+++ b/src/main/java/gregtech/common/tileentities/machines/ISmartInputHatch.java
@@ -10,4 +10,6 @@ public interface ISmartInputHatch {
// Have the contents of the hatch changed since the last check?
boolean justUpdated();
+ public boolean doFastRecipeCheck();
+
}