- Can't figure out what formatter is trying to do, but it's causing a Crash for hardcoded Balance

This commit is contained in:
Sol
2013-06-13 02:45:25 +00:00
parent 6c5e2346d9
commit 15842ef349

View File

@@ -62,7 +62,7 @@ public class CardFactorySorceries {
continue;
}
List<Card> toSac = p.getController().choosePermanentsToSacrifice(card, sac, sac, l, "Select %d more land(s) to sacrifice");
List<Card> toSac = p.getController().choosePermanentsToSacrifice(card, sac, sac, l, "land(s)");
for( Card crd : toSac )
p.getGame().getAction().sacrifice(crd, card);
}
@@ -105,7 +105,7 @@ public class CardFactorySorceries {
if (sac == 0) {
continue;
}
List<Card> toSac = p.getController().choosePermanentsToSacrifice(card, sac, sac, c, "Select %d more creature(s) to sacrifice");
List<Card> toSac = p.getController().choosePermanentsToSacrifice(card, sac, sac, c, "creature(s)");
for( Card crd : toSac )
p.getGame().getAction().sacrifice(crd, card);