Fix starters with multiple forms being unable to change move (#667)
parent
fd088c9360
commit
802daecd65
|
@ -1098,7 +1098,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler {
|
||||||
// starterMoveData doesn't have base form moves or is using the single form format
|
// starterMoveData doesn't have base form moves or is using the single form format
|
||||||
if (!this.scene.gameData.starterData[speciesId].moveset || Array.isArray(this.scene.gameData.starterData[speciesId].moveset))
|
if (!this.scene.gameData.starterData[speciesId].moveset || Array.isArray(this.scene.gameData.starterData[speciesId].moveset))
|
||||||
this.scene.gameData.starterData[speciesId].moveset = { [props.formIndex]: this.starterMoveset.slice(0) as StarterMoveset };
|
this.scene.gameData.starterData[speciesId].moveset = { [props.formIndex]: this.starterMoveset.slice(0) as StarterMoveset };
|
||||||
const starterMoveData = this.scene.gameData.starterData[speciesId].moveset[props.formIndex];
|
const starterMoveData = this.scene.gameData.starterData[speciesId].moveset;
|
||||||
|
|
||||||
// starterMoveData doesn't have active form moves
|
// starterMoveData doesn't have active form moves
|
||||||
if (!starterMoveData.hasOwnProperty(props.formIndex))
|
if (!starterMoveData.hasOwnProperty(props.formIndex))
|
||||||
|
|
Loading…
Reference in New Issue