changed cardtype from list to enumset

This commit is contained in:
ingmargoudt 2017-03-03 17:04:32 +01:00
parent c0ffc47bf7
commit 372584f7ad
22 changed files with 116 additions and 55 deletions

View file

@ -27,7 +27,9 @@
*/
package mage.game.command;
import java.util.EnumSet;
import java.util.List;
import java.util.Set;
import java.util.UUID;
import mage.MageInt;
import mage.ObjectColor;
@ -110,7 +112,7 @@ public class Commander implements CommandObject {
}
@Override
public List<CardType> getCardType() {
public EnumSet<CardType> getCardType() {
return sourceObject.getCardType();
}