} else if (transporter.startsWith("MechBay:", 0)) {
String numbers = transporter.substring(8);
String temp[] = numbers.split(":");
int size = Integer.parseInt(temp[0]);
int doors = Integer.parseInt(temp[1]);
a.addTransporter(new MechBay(size, doors));
} else if (transporter.startsWith("LightVehicleBay:", 0)) {
String numbers = transporter.substring(16);
String temp[] = numbers.split(":");
int size = Integer.parseInt(temp[0]);
int doors = Integer.parseInt(temp[1]);