- Fixed card filtering in the deck editor for cards with {C} in their mana costs.

This commit is contained in:
Agetian
2016-01-16 13:24:17 +00:00
parent e559a328be
commit e6b4e1db2f

View File

@@ -157,6 +157,9 @@ public class SFilterUtil {
if (buttonMap.get(StatTypes.GREEN).isSelected()) {
colors0 |= MagicColor.GREEN;
}
if (buttonMap.get(StatTypes.COLORLESS).isSelected()) {
colors0 |= MagicColor.COLORLESS;
}
final byte colors = colors0;
final boolean wantColorless = buttonMap.get(StatTypes.COLORLESS).isSelected();