From dc5279cd7af15c251c6d04400b820f2b9dfdb47f Mon Sep 17 00:00:00 2001 From: "Lynn \"Zhorken\" Vaughan" Date: Thu, 26 Jul 2012 14:43:47 -0400 Subject: [PATCH] Add Conquest kingdoms and warriors to the lookup. --- pokedex/lookup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pokedex/lookup.py b/pokedex/lookup.py index 7439c2c..baa9b7f 100644 --- a/pokedex/lookup.py +++ b/pokedex/lookup.py @@ -87,6 +87,8 @@ _table_order = dict( types=5, locations=6, natures=7, + conquest_warriors=8, + conquest_kingdoms=9, ) def _table_facet_impl(searcher, docnum): u"""Implements a sort that puts different "types" of results in a @@ -116,6 +118,9 @@ class PokedexLookup(object): tables.PokemonSpecies, tables.PokemonForm, tables.Type, + + tables.ConquestKingdom, + tables.ConquestWarrior ) )