diff options
author | Maya <10861407+serenibyss@users.noreply.github.com> | 2024-12-02 08:12:05 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-02 08:12:05 -0600 |
commit | 62b6fc8498d754ae388f92b933b656da5f38dee0 (patch) | |
tree | 42668955cd42c2bdbd86f55ab860089dd6019341 /src/main/java/gregtech/common/tileentities/machines/MTEHatchOutputME.java | |
parent | 8380ef61ad9e688a2d05a9db70aa55b54288fae6 (diff) | |
download | GT5-Unofficial-62b6fc8498d754ae388f92b933b656da5f38dee0.tar.gz GT5-Unofficial-62b6fc8498d754ae388f92b933b656da5f38dee0.tar.bz2 GT5-Unofficial-62b6fc8498d754ae388f92b933b656da5f38dee0.zip |
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/machines/MTEHatchOutputME.java')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/MTEHatchOutputME.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/MTEHatchOutputME.java b/src/main/java/gregtech/common/tileentities/machines/MTEHatchOutputME.java index b502ad54d3..7ddf136a72 100644 --- a/src/main/java/gregtech/common/tileentities/machines/MTEHatchOutputME.java +++ b/src/main/java/gregtech/common/tileentities/machines/MTEHatchOutputME.java @@ -161,16 +161,6 @@ public class MTEHatchOutputME extends MTEHatchOutput implements IPowerChannelSta } /** - * Get the available fluid space, up to max int. - */ - @Override - public int getAvailableSpace() { - long availableSpace = getCacheCapacity() - getCachedAmount(); - if (availableSpace > Integer.MAX_VALUE) availableSpace = Integer.MAX_VALUE; - return (int) availableSpace; - } - - /** * Attempt to store fluid in connected ME network. Returns how much fluid is accepted (if the network was down e.g.) * * @param aFluid input fluid |