Added the four finalists from You Make the Cube.

This commit is contained in:
fireshoes 2016-10-17 23:43:25 -05:00
parent 60d37ca22c
commit c045204622

View file

@ -61,6 +61,7 @@ import mage.client.deckeditor.table.TableModel;
import mage.client.deckeditor.table.UpdateCountsCallback; import mage.client.deckeditor.table.UpdateCountsCallback;
import mage.client.dialog.PreferencesDialog; import mage.client.dialog.PreferencesDialog;
import mage.client.plugins.impl.Plugins; import mage.client.plugins.impl.Plugins;
import mage.client.util.CardViewCardTypeComparator;
import mage.client.util.CardViewColorComparator; import mage.client.util.CardViewColorComparator;
import mage.client.util.CardViewColorIdentityComparator; import mage.client.util.CardViewColorIdentityComparator;
import mage.client.util.CardViewCostComparator; import mage.client.util.CardViewCostComparator;
@ -331,6 +332,9 @@ public class CardsList extends javax.swing.JPanel implements MouseListener, ICar
case RARITY: case RARITY:
comparator = new CardViewRarityComparator(); comparator = new CardViewRarityComparator();
break; break;
case CARD_TYPE:
comparator = new CardViewCardTypeComparator();
break;
case COLOR: case COLOR:
comparator = new CardViewColorComparator(); comparator = new CardViewColorComparator();
break; break;