Merge branch 'beta' into new-data-structures-for-pokedex

This commit is contained in:
damocleas 2025-02-01 18:31:59 -05:00 committed by GitHub
commit 29bbf28919
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4727,7 +4727,7 @@ export class EnemyPokemon extends Pokemon {
this.status = new Status(Overrides.OPP_STATUS_OVERRIDE, 0, 4);
}
if (Overrides.OPP_GENDER_OVERRIDE) {
if (Overrides.OPP_GENDER_OVERRIDE !== null) {
this.gender = Overrides.OPP_GENDER_OVERRIDE;
}