1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-19 19:25:48 +00:00

Update AbstractCargoNode.java

This commit is contained in:
LinoxGH 2020-09-27 21:41:25 +03:00 committed by GitHub
parent 956d8ed078
commit fdd3dbbb4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,7 +83,7 @@ abstract class AbstractCargoNode extends SlimefunItem {
menu.addMenuClickHandler(slotPrev, (p, slot, item, action) -> {
int newChannel = channel - 1;
if (channel < 0) {
if (newChannel < 0) {
if (isChestTerminalInstalled) {
newChannel = 16;
}