added nolegend ability. this doesn't remove legend rule, it only makes a card thas has nolegend ability excluded from check.
This commit is contained in:
@@ -2335,7 +2335,10 @@ int MTGLegendRule::canBeInList(MTGCardInstance * card)
|
||||
return 0;
|
||||
if (card->hasType(Subtypes::TYPE_LEGENDARY) && game->isInPlay(card))
|
||||
{
|
||||
return 1;
|
||||
if(card->has(Constants::NOLEGEND))
|
||||
return 0;
|
||||
else
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user