data for booster generation incorporated into CardSet

This commit is contained in:
Maxmtg
2011-09-14 21:54:19 +00:00
parent fccb3ee63a
commit 63de7ff3c1
7 changed files with 100 additions and 53 deletions

View File

@@ -37,7 +37,7 @@ public class BoosterDraftTest implements BoosterDraft {
*/
public ItemPoolView<CardPrinted> nextChoice() {
n--;
BoosterGenerator pack = new BoosterGenerator("M11");
BoosterGenerator pack = new BoosterGenerator(SetUtils.getSetByCode("M11"));
return ItemPool.createFrom(pack.getBoosterPack(), CardPrinted.class);
}