add NonLegendary param to copySpellHost (for Double Major)

This commit is contained in:
Northmoc
2021-04-03 13:02:01 -04:00
parent 5472f17c96
commit 4fe66ddca8

View File

@@ -133,6 +133,10 @@ public class CardFactory {
final Card original = targetSA.getHostCard();
final Card c = copyCard(original, true);
if (sourceSA.hasParam("NonLegendary")) {
c.removeType(CardType.Supertype.Legendary);
}
// change the color of the copy (eg: Fork)
if (null != sourceSA && sourceSA.hasParam("CopyIsColor")) {
String tmp = "";