From 23aedeef8425531fdda3e72bc2167f89bd1e2cfc Mon Sep 17 00:00:00 2001 From: Sumpfork Date: Wed, 10 Dec 2014 11:04:32 -0800 Subject: [PATCH] fix expansion selection option --- dominion_tabs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dominion_tabs.py b/dominion_tabs.py index 2e99e38..b56aded 100644 --- a/dominion_tabs.py +++ b/dominion_tabs.py @@ -124,6 +124,8 @@ class DominionTabs: @classmethod def getType(cls, typespec): + if typespec == 'Expansion': + return typespec mapped_spec = tuple([cls.language_mapping[t] for t in typespec]) return cls.cardTypes[mapped_spec]