Move empty init exception into BagRandomizer

This commit is contained in:
pfirpfel
2020-10-22 22:32:03 +02:00
parent 7204f4369c
commit f277b72a67
3 changed files with 11 additions and 9 deletions

View File

@@ -207,9 +207,9 @@ public class BoosterDraft implements IBoosterDraft {
themeFilter);
// Add chaos "boosters" as special suppliers
final Supplier<List<PaperCard>> ChaosDraftSupplier;
try{
try {
ChaosDraftSupplier = new ChaosBoosterSupplier(chaosDraftEditions);
} catch(Exception e) {
} catch(IllegalArgumentException e) {
System.out.println(e.getMessage());
return false;
}