Update src/data/pokemon-forms.ts

Co-authored-by: innerthunder <168692175+innerthunder@users.noreply.github.com>
This commit is contained in:
Mumble 2024-11-19 09:24:37 -08:00 committed by GitHub
parent caba8ca5c1
commit 3cc4425aa2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -352,7 +352,7 @@ export class MeloettaFormChangePostMoveTrigger extends SpeciesFormChangePostMove
return false; return false;
} else { } else {
// Meloetta will not transform if it has the ability Sheer Force when using Relic Song // Meloetta will not transform if it has the ability Sheer Force when using Relic Song
if (pokemon.hasAbility(Abilities.SHEER_FORCE, true)) { if (pokemon.hasAbility(Abilities.SHEER_FORCE)) {
return false; return false;
} }
return super.canChange(pokemon); return super.canChange(pokemon);