From a02dd03581baba728b68a20d84b007edd04cf310 Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Sat, 23 Nov 2013 02:33:03 -0600 Subject: draw more than one map group --- pokemontools/map_gfx.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pokemontools/map_gfx.py b/pokemontools/map_gfx.py index f851f92..568969f 100644 --- a/pokemontools/map_gfx.py +++ b/pokemontools/map_gfx.py @@ -243,4 +243,5 @@ def save_maps(savedir, config=config): for map_group_id in crystal.map_names.keys(): for map_id in crystal.map_names[map_group_id].keys(): - image = save_map(map_group_id, map_id, savedir, config) + if isinstance(map_id, int): + image = save_map(map_group_id, map_id, savedir, config) -- cgit v1.2.3