Fix default starter hidden ability for new accounts
parent
77c584981b
commit
e17aee5d48
|
@ -342,6 +342,11 @@ export class GameData {
|
||||||
} else {
|
} else {
|
||||||
if ([ '1.0.0', '1.0.1' ].includes(systemData.gameVersion))
|
if ([ '1.0.0', '1.0.1' ].includes(systemData.gameVersion))
|
||||||
this.migrateStarterAbilities(systemData);
|
this.migrateStarterAbilities(systemData);
|
||||||
|
// Migrate ability starter data if empty for caught species
|
||||||
|
Object.keys(systemData.starterData).forEach(sd => {
|
||||||
|
if (systemData.dexData[sd].caughtAttr && !systemData.starterData[sd].abilityAttr)
|
||||||
|
systemData.starterData[sd].abilityAttr = 1;
|
||||||
|
});
|
||||||
this.starterData = systemData.starterData;
|
this.starterData = systemData.starterData;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue