From a4ee4e68108e6c8b37ee053d526d3eaecd838f51 Mon Sep 17 00:00:00 2001 From: Dan Date: Thu, 21 Nov 2024 14:39:45 +0000 Subject: [PATCH] - Pichu's data is bad and isn't falgged as a bay on its own page. --- ui/workers/gather_evolutions_worker.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/workers/gather_evolutions_worker.py b/ui/workers/gather_evolutions_worker.py index 454f02d..0357fb8 100644 --- a/ui/workers/gather_evolutions_worker.py +++ b/ui/workers/gather_evolutions_worker.py @@ -158,6 +158,9 @@ class GatherEvolutions(QRunnable): flower_form = flower_form.replace("Male", "").replace("male", "").strip() fix_form(evolution_tree, flower_form) + if evolution_tree["pokemon"] == "Pichu": + evolution_tree["is_baby"] = True + cache.set(cache_record_name, evolution_tree) return evolution_tree