From a66f183a30788c68a44237b352f5898e3d0dd632 Mon Sep 17 00:00:00 2001 From: Wlowscha <54003515+Wlowscha@users.noreply.github.com> Date: Wed, 29 Oct 2025 11:20:52 +0100 Subject: [PATCH] [Bug] Show ribbons for forms of evolutions (#6708) --- src/utils/ribbon-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/ribbon-utils.ts b/src/utils/ribbon-utils.ts index 774ae26a0a6..f45cfef80d8 100644 --- a/src/utils/ribbon-utils.ts +++ b/src/utils/ribbon-utils.ts @@ -65,7 +65,7 @@ export function getAvailableRibbons(species: PokemonSpecies): RibbonFlag[] { data |= getRibbonForType(checkingSpecies.type2); } - for (const form of species.forms) { + for (const form of checkingSpecies.forms) { data |= getRibbonForType(form.type1); if (form.type2 != null) { data |= getRibbonForType(form.type2);