diff options
author | repo_alt <wvk17@yandex.ru> | 2020-05-05 23:40:47 +0300 |
---|---|---|
committer | repo_alt <wvk17@yandex.ru> | 2020-05-05 23:40:47 +0300 |
commit | 145ba6dee840d231fd8b8682ee9d5d1b6194246a (patch) | |
tree | 8475839d7fd971703ac5680921a408c796bfd31f /src/main/java/gregtech/common/tileentities | |
parent | 6fcd6f946ef7eb125bef33bf0e60004e87c7dcac (diff) | |
download | GT5-Unofficial-145ba6dee840d231fd8b8682ee9d5d1b6194246a.tar.gz GT5-Unofficial-145ba6dee840d231fd8b8682ee9d5d1b6194246a.tar.bz2 GT5-Unofficial-145ba6dee840d231fd8b8682ee9d5d1b6194246a.zip |
3x3 pattern does not work in a packager
https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/6052
Diffstat (limited to 'src/main/java/gregtech/common/tileentities')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Boxinator.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Boxinator.java b/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Boxinator.java index c135740096..938c2d6900 100644 --- a/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Boxinator.java +++ b/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Boxinator.java @@ -77,6 +77,7 @@ public class GT_MetaTileEntity_Boxinator //In case recipe is too OP for that machine if (mMaxProgresstime == Integer.MAX_VALUE - 1 && mEUt == Integer.MAX_VALUE - 1) return FOUND_RECIPE_BUT_DID_NOT_MEET_REQUIREMENTS; + return FOUND_AND_SUCCESSFULLY_USED_RECIPE; } } return DID_NOT_FIND_RECIPE; |