Fix ME Portable Cell voiding/dupes & disabled slot idiocy

Fixes #383, fixes #299
This commit is contained in:
NotMyWing
2025-03-18 18:22:03 +11:00
parent f42a5778d2
commit f1e5a33a6e
2 changed files with 7 additions and 2 deletions
@@ -20,13 +20,14 @@ package appeng.client.gui.implementations;
import appeng.api.implementations.guiobjects.IPortableCell;
import appeng.container.implementations.ContainerMEPortableCell;
import net.minecraft.entity.player.InventoryPlayer;
public class GuiMEPortableCell extends GuiMEMonitorable {
public GuiMEPortableCell(final InventoryPlayer inventoryPlayer, final IPortableCell te) {
super(inventoryPlayer, te);
super(inventoryPlayer, te, new ContainerMEPortableCell(inventoryPlayer, te));
}
@Override