This commit is contained in:
tool4EvEr
2022-04-12 22:32:07 +02:00
parent 2ef5f67fb8
commit e782ec07c7
2 changed files with 1 additions and 3 deletions

View File

@@ -124,8 +124,6 @@ public class CardFactory {
final Game game = source.getGame();
final Card c = new Card(game.nextCardId(), original.getPaperCard(), game);
copyCopiableCharacteristics(original, c);
// fix old cardstates
buildAbilities(c);
if (sourceSA.hasParam("NonLegendary")) {
c.removeType(CardType.Supertype.Legendary);

View File

@@ -1688,7 +1688,7 @@ public class CardProperty {
if (card.getCastSAFallBack() == null) {
return false;
}
return card.getCastSA().isBlitz();
return card.getCastSAFallBack().isBlitz();
} else if (property.equals("dashed")) {
if (card.getCastSAFallBack() == null) {
return false;