} else if (transporter.startsWith("InfantryBay:", 0)) {
String numbers = transporter.substring(12);
String temp[] = numbers.split(":");
int size = Integer.parseInt(temp[0]);
int doors = Integer.parseInt(temp[1]);
a.addTransporter(new InfantryBay(size, doors));
} else if (transporter.startsWith("BattleArmorBay:", 0)) {
String numbers = transporter.substring(15);
String temp[] = numbers.split(":");
int size = Integer.parseInt(temp[0]);
int doors = Integer.parseInt(temp[1]);