diff --git a/projects/mtg/src/MTGDeck.cpp b/projects/mtg/src/MTGDeck.cpp index 848cd6a26..ad0b19318 100644 --- a/projects/mtg/src/MTGDeck.cpp +++ b/projects/mtg/src/MTGDeck.cpp @@ -1074,7 +1074,8 @@ void MTGDeck::printDetailedDeckText(std::ofstream& file ) for (size_t x = 0; x < card->data->basicAbilities.size(); ++x) { - currentCard << Constants::MTGBasicAbilities[x] << "; "; + if ( card->data->basicAbilities[x] == 1 ) + currentCard << Constants::MTGBasicAbilities[x] << "; "; } currentCard <