Fixed bad row gap in matter capacitor bank

This commit is contained in:
DBotThePony 2021-08-20 22:01:06 +07:00
parent a0af840ab9
commit 22fac17186
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -29,7 +29,7 @@ public class MatterCapacitorBankMenu extends MatteryMenu {
for (int row = 0; row < 2; row++)
for (int column = 0; column < 6; column++)
addMainSlot(new MatterContainerInputSlot(container, row * 5 + column, 44 + column * 18, 20 + row * 18, true, IMatterHandler.MatterDirection.BIDIRECTIONAL));
addMainSlot(new MatterContainerInputSlot(container, row * 6 + column, 44 + column * 18, 20 + row * 18, true, IMatterHandler.MatterDirection.BIDIRECTIONAL));
addInventorySlots();
}