mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-15 06:15:20 +01:00
[Bug] Show ribbons for forms of evolutions (#6708)
This commit is contained in:
parent
3c41b26045
commit
a66f183a30
@ -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);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user