[Beta][Bug] Fix out of bounds Genesect form in Ghetsis_2 causing crash (#4389)
This commit is contained in:
parent
554d4f0a95
commit
342bd5c726
|
@ -2067,7 +2067,7 @@ export const trainerConfigs: TrainerConfigs = {
|
|||
p.setBoss(true, 2);
|
||||
p.generateAndPopulateMoveset();
|
||||
p.pokeball = PokeballType.ULTRA_BALL;
|
||||
p.formIndex = Utils.randSeedInt(5, 1); // Shock, Burn, Chill, or Douse Drive
|
||||
p.formIndex = Utils.randSeedInt(4, 1); // Shock, Burn, Chill, or Douse Drive
|
||||
}))
|
||||
.setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.BASCULEGION, Species.JELLICENT ], TrainerSlot.TRAINER, true, p => {
|
||||
p.generateAndPopulateMoveset();
|
||||
|
|
Loading…
Reference in New Issue