add options show tokens
you can display tokens in editor (show tokens and choose 0 manacost) but you can't add them, useful for tracking missing images...
This commit is contained in:
@@ -46,6 +46,7 @@ public:
|
||||
CHEATMODEAIDECK,
|
||||
OSD,
|
||||
BLKBORDER,
|
||||
SHOWTOKENS,
|
||||
CLOSEDHAND,
|
||||
HANDDIRECTION,
|
||||
MANADISPLAY,
|
||||
|
||||
@@ -233,8 +233,8 @@ public:
|
||||
;
|
||||
WCFilterSet(string arg);
|
||||
bool isMatch(MTGCard *c)
|
||||
{
|
||||
return (setid == MTGSets::ALL_SETS || c->setId == setid) && (c->getRarity() != Constants::RARITY_T); //removes viewing of card tokens. tokens will not display on spoiler and should not affect gameplay :)
|
||||
{//exclude negative id's and tokens
|
||||
return (setid == MTGSets::ALL_SETS || c->setId == setid) && ((c->getId() > 0) && (c->getRarity() != Constants::RARITY_T));
|
||||
}
|
||||
;
|
||||
string getCode();
|
||||
|
||||
Reference in New Issue
Block a user