Updated formats to include subtype enum and made a first batch attempt to set the value

Now sorting formats by type, subtype then name
Added new "additional" property to gameformats to allow additional non printed but legal cards to be included e.g. dual lands in extended 1999
This commit is contained in:
austinio7116
2018-04-10 07:28:28 +01:00
committed by maustin
parent 3e1f5c7632
commit a5d964a334
427 changed files with 473 additions and 114 deletions

View File

@@ -135,8 +135,11 @@ public abstract class FormatFilter<T extends InventoryItem> extends ItemFilter<T
case Historic:
lstFormats.addItem(format, 2);
break;
case Custom:
case Digital:
lstFormats.addItem(format, 3);
break;
case Custom:
lstFormats.addItem(format, 4);
}
}
lstFormats.setListItemRenderer(new FormatRenderer());