From 08966c455041fcb32d001ad7be3a77c76282b6d0 Mon Sep 17 00:00:00 2001 From: Richard Neal Date: Sat, 10 Nov 2018 00:55:34 -0800 Subject: [PATCH] Update js/cards/parsecards.py Currently, split cards written with both halves (Fire // Ice as opposed to Fire) have no type value, and are grouped separately from all other types. As all split cards are currently in the set of instants and socrceries, group them with those instead. --- js/cards/parsecards.py | 1 + 1 file changed, 1 insertion(+) diff --git a/js/cards/parsecards.py b/js/cards/parsecards.py index 553cb1e..87f31ab 100755 --- a/js/cards/parsecards.py +++ b/js/cards/parsecards.py @@ -99,6 +99,7 @@ def getLegalities(card, cards): ocards[ocard]['c'] = 'S' ocards[ocard]['m'] = 98 ocards[ocard]['n'] = name + ocards[ocard]['t'] = '3' legality = getLegalities(card, cards) if legality != "": ocards[ocard]['b'] = legality