mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 03:38:01 +00:00
- Can't figure out what formatter is trying to do, but it's causing a Crash for hardcoded Balance
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user