if (transporter.startsWith("ASFBay:", 0)) {
String numbers = transporter.substring(7);
String temp[] = numbers.split(":");
int size = Integer.parseInt(temp[0]);
int doors = Integer.parseInt(temp[1]);
a.addTransporter(new ASFBay(size, doors));
} else if (transporter.startsWith("SmallCraftBay:", 0)) {
String numbers = transporter.substring(14);
String temp[] = numbers.split(":");
int size = Integer.parseInt(temp[0]);
int doors = Integer.parseInt(temp[1]);