diff options
author | miozune <miozune@gmail.com> | 2023-05-30 23:09:26 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-30 16:09:26 +0200 |
commit | b6c69d71f9b85603621e599586c72aaee7c8b5fe (patch) | |
tree | 5bc3b18b84a6c25e683f40adec86375194d2ecc8 /src/main/java/goodgenerator/blocks/tileEntity/ComponentAssemblyLine.java | |
parent | b2cd04efc924b7a8579e4e6c2ac10f96c0d8d969 (diff) | |
download | GT5-Unofficial-b6c69d71f9b85603621e599586c72aaee7c8b5fe.tar.gz GT5-Unofficial-b6c69d71f9b85603621e599586c72aaee7c8b5fe.tar.bz2 GT5-Unofficial-b6c69d71f9b85603621e599586c72aaee7c8b5fe.zip |
Update to new input separation API & appearance of PAss GUI (#166)
Diffstat (limited to 'src/main/java/goodgenerator/blocks/tileEntity/ComponentAssemblyLine.java')
-rw-r--r-- | src/main/java/goodgenerator/blocks/tileEntity/ComponentAssemblyLine.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/goodgenerator/blocks/tileEntity/ComponentAssemblyLine.java b/src/main/java/goodgenerator/blocks/tileEntity/ComponentAssemblyLine.java index 88cfd990b2..1dfdfa91eb 100644 --- a/src/main/java/goodgenerator/blocks/tileEntity/ComponentAssemblyLine.java +++ b/src/main/java/goodgenerator/blocks/tileEntity/ComponentAssemblyLine.java @@ -324,7 +324,7 @@ public class ComponentAssemblyLine extends GT_MetaTileEntity_LongPowerUsageBase< } @Override - protected boolean isInputSeparationButtonEnabled() { + public boolean supportsInputSeparation() { return true; } |