From c533058d9e5b8ad75ab40625f2e506429f07481c Mon Sep 17 00:00:00 2001 From: ercdndrs Date: Thu, 8 Jul 2021 22:24:12 -0400 Subject: [PATCH] Fix typo --- automaxlair/da_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automaxlair/da_controller.py b/automaxlair/da_controller.py index 550b463..1dcf6f6 100644 --- a/automaxlair/da_controller.py +++ b/automaxlair/da_controller.py @@ -501,7 +501,7 @@ def identify_pokemon( if types != '': for i, type_name_dict in enumerate(pokemon.types): string_to_match += type_name_dict.get( - self.lang, self.type_ids[i]) + self.lang, pokemon.type_ids[i]) if moves != '': for move in pokemon.moves: string_to_match += move.names.get(self.lang, move.name_id)