Fix issue with undefined variant

pull/192/head
Flashfyre 2024-04-19 01:25:19 -04:00
parent b546203118
commit 6220165315
2 changed files with 14 additions and 14 deletions

View File

@ -162,8 +162,8 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
if (this.shiny === undefined) if (this.shiny === undefined)
this.trySetShiny(); this.trySetShiny();
if (this.shiny && this.variant === undefined) if (this.variant === undefined)
this.variant = this.generateVariant(); this.variant = this.shiny ? this.generateVariant() : 0;
if (nature !== undefined) if (nature !== undefined)
this.setNature(nature); this.setNature(nature);