X-Git-Url: https://git.yukkurigames.com/?p=mlpccg-meta.git;a=blobdiff_plain;f=mlpccg%2FDeckList.py;h=ec576456dbebf93b51238d740c76d383ef710a46;hp=5ff46bf9d6ec720dc5f20f552da6fee2a8d2aa1a;hb=247faccd70eea33b856c3aac471be3d411b8be80;hpb=22a94820738824527277e21f2f37bc77638e12bc diff --git a/mlpccg/DeckList.py b/mlpccg/DeckList.py index 5ff46bf..ec57645 100644 --- a/mlpccg/DeckList.py +++ b/mlpccg/DeckList.py @@ -57,7 +57,7 @@ class DeckList: def ponyhead_link(self): cards = defaultdict(int) for card in self.cards: - cards[card['id'].replace('f', 'F')] += 1 + cards[card['id'].replace('pf', 'PF').replace('f', 'F')] += 1 cards = ['%sx%d' % (id, amount) for id, amount in cards.iteritems()]