1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00
This commit is contained in:
SoSeDiK 2019-04-13 13:47:22 +03:00
parent 9436c3d654
commit 4fed304381
2 changed files with 2 additions and 2 deletions

View File

@ -145,7 +145,7 @@ public class CargoInputNode extends SlimefunItem {
if (channeln > 15) channeln = 0;
}
BlockStorage.addBlockInfo(b, "frequency", String.valueOf(channel));
BlockStorage.addBlockInfo(b, "frequency", String.valueOf(channeln));
newInstance(menu, b);
return false;
});

View File

@ -79,7 +79,7 @@ public class CargoOutputNode extends SlimefunItem {
if (channeln > 15) channeln = 0;
}
BlockStorage.addBlockInfo(b, "frequency", String.valueOf(channel));
BlockStorage.addBlockInfo(b, "frequency", String.valueOf(channeln));
newInstance(menu, b);
return false;
});