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

Merge pull request #2354 from LinoxGH/patch-6

Possibly fixed #2353
This commit is contained in:
TheBusyBiscuit 2020-09-28 15:53:26 +02:00 committed by GitHub
commit 395713cd52
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;
}