F button does not show up if there is only one obtainable form

This commit is contained in:
Wlowscha 2025-02-12 00:41:02 +01:00
parent b873ab104c
commit c641863ea7
No known key found for this signature in database
GPG Key ID: 3C8F1AD330565D04

View File

@ -1961,7 +1961,7 @@ export default class PokedexUiHandler extends MessageUiHandler {
this.setTypeIcons(null, null);
}
if (species?.forms?.length > 1) {
if (species?.forms?.filter(f => !f.isUnobtainable).length > 1) {
if (!this.showingTray) {
this.showFormTrayIconElement.setVisible(true);
this.showFormTrayLabel.setVisible(true);