Removed Terminal style from Portable Cell Gui.

Portable Cell now only shows 3 rows now, like it should.
Security Gui now has the proper width.
Fixed bug introduced in #90 to show background behind security terminal slots.
This commit is contained in:
AlgorithmX2
2014-04-16 13:48:03 -05:00
parent 71b5fd4555
commit f5fc2ba18e
3 changed files with 22 additions and 7 deletions
@@ -9,7 +9,11 @@ public class GuiMEPortableCell extends GuiMEMonitorable
public GuiMEPortableCell(InventoryPlayer inventoryPlayer, IPortableCell te) {
super( inventoryPlayer, te, new ContainerMEPortableCell( inventoryPlayer, null ) );
maxRows = 3;
}
@Override
int getMaxRows()
{
return 3;
}
}