This commit is contained in:
Krazy
2014-04-30 17:11:11 +00:00
parent d3a3ef878e
commit e711c1bca1

View File

@@ -550,7 +550,7 @@ public class ComputerUtil {
*/
public static List<Card> chooseTapType(final Player ai, final String type, final Card activate, final boolean tap, final int amount) {
List<Card> typeList =
CardLists.getValidCards(ai.getCardsIn(ZoneType.Battlefield), type.split(","), activate.getController(), activate);
CardLists.getValidCards(ai.getCardsIn(ZoneType.Battlefield), type.split(";"), activate.getController(), activate);
// is this needed?
typeList = CardLists.filter(typeList, Presets.UNTAPPED);
@@ -590,7 +590,7 @@ public class ComputerUtil {
*/
public static List<Card> chooseUntapType(final Player ai, final String type, final Card activate, final boolean untap, final int amount) {
List<Card> typeList =
CardLists.getValidCards(ai.getCardsIn(ZoneType.Battlefield), type.split(","), activate.getController(), activate);
CardLists.getValidCards(ai.getCardsIn(ZoneType.Battlefield), type.split(";"), activate.getController(), activate);
// is this needed?
typeList = CardLists.filter(typeList, Presets.TAPPED);