Index: AE/installer2/src/net/oni2/aeinstaller/gui/modtable/ModTableModel.java
===================================================================
--- AE/installer2/src/net/oni2/aeinstaller/gui/modtable/ModTableModel.java	(revision 605)
+++ AE/installer2/src/net/oni2/aeinstaller/gui/modtable/ModTableModel.java	(revision 606)
@@ -12,5 +12,4 @@
 import net.oni2.aeinstaller.backend.mods.Mod;
 import net.oni2.aeinstaller.backend.mods.ModManager;
-import net.oni2.aeinstaller.backend.mods.Type;
 
 /**
@@ -43,19 +42,9 @@
 				return mod;
 			case 0:
+				return install.get(row);
+			case 1:
 				return mod.getName();
-			case 1:
+			case 2:
 				return mod.getPackageNumberString();
-			case 2:
-				String type = "";
-				for (Type t : mod.getTypes()) {
-					if (type.length() > 0)
-						type += ", ";
-					type += t.getName();
-				}
-				return type;
-			case 3:
-				return mod.getPlatform().toString();
-			case 4:
-				return install.get(row);
 		}
 		return null;
@@ -66,13 +55,9 @@
 		switch (col) {
 			case 0:
+				return bundle.getString("mod.install");
+			case 1:
 				return bundle.getString("mod.name");
-			case 1:
+			case 2:
 				return bundle.getString("mod.package_number");
-			case 2:
-				return bundle.getString("mod.type");
-			case 3:
-				return bundle.getString("mod.platform");
-			case 4:
-				return bundle.getString("mod.install");
 		}
 		return null;
@@ -86,5 +71,5 @@
 	@Override
 	public int getColumnCount() {
-		return 5;
+		return 3;
 	}
 
@@ -93,13 +78,9 @@
 		switch (col) {
 			case 0:
+				return Boolean.class;
+			case 1:
 				return String.class;
-			case 1:
+			case 2:
 				return String.class;
-			case 2:
-				return String.class;
-			case 3:
-				return String.class;
-			case 4:
-				return Boolean.class;
 		}
 		return null;
@@ -118,23 +99,14 @@
 		switch (colNum) {
 			case 0:
-				col.setPreferredWidth(150);
-				break;
-			case 1:
-				w = 55;
+				w = 50;
 				col.setPreferredWidth(w);
 				col.setMinWidth(w);
 				col.setMaxWidth(w);
 				break;
-			case 2:
-				col.setPreferredWidth(100);
+			case 1:
+				col.setPreferredWidth(150);
 				break;
-			case 3:
-				w = 70;
-				col.setPreferredWidth(w);
-				col.setMinWidth(w);
-				col.setMaxWidth(w);
-				break;
-			case 4:
-				w = 60;
+			case 2:
+				w = 55;
 				col.setPreferredWidth(w);
 				col.setMinWidth(w);
@@ -204,5 +176,5 @@
 	@Override
 	public boolean isCellEditable(int rowIndex, int columnIndex) {
-		return columnIndex == 4;
+		return columnIndex == 0;
 	}
 
@@ -210,5 +182,5 @@
 	public void setValueAt(Object aValue, int rowIndex, int columnIndex) {
 		super.setValueAt(aValue, rowIndex, columnIndex);
-		if (columnIndex == 4) {
+		if (columnIndex == 0) {
 			install.set(rowIndex, (Boolean) aValue);
 
Index: AE/installer2/src/net/oni2/aeinstaller/gui/modtable/ModTableModel.properties
===================================================================
--- AE/installer2/src/net/oni2/aeinstaller/gui/modtable/ModTableModel.properties	(revision 605)
+++ AE/installer2/src/net/oni2/aeinstaller/gui/modtable/ModTableModel.properties	(revision 606)
@@ -1,5 +1,3 @@
 mod.name=Name
-mod.type=Type
 mod.package_number=Pkg#
-mod.platform=Platform
-mod.install=Install?
+mod.install=Install
