diff options
author | Sampsa <69092953+S4mpsa@users.noreply.github.com> | 2024-07-29 23:50:33 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-29 23:50:33 +0300 |
commit | bbe59c0de8cc6a65369671789123319354148347 (patch) | |
tree | 3d1c984857f6345d356c0072d2b0d15f39986a45 /src/main/java/gregtech/common/tileentities/machines/ISmartInputHatch.java | |
parent | 078a7800baa7ad01f268f53363ced60034811948 (diff) | |
download | GT5-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.java | 2 |
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(); + } |