MechSummary ms = MechSummaryCache.getInstance().getMech(sRef);
if (ms == null) {
throw new Exception("Scenario requires missing entity: " + sRef);
}
System.out.println("Loading " + ms.getName());
Entity e = new MechFileParser(ms.getSourceFile(), ms.getEntryName())
.getEntity();
e
.setCrew(new Pilot(st.nextToken(), Integer.parseInt(st
.nextToken()), Integer.parseInt(st.nextToken())));
try {