mirror of https://github.com/pret/pokecrystal.git
fix missing supernerd markus
This commit is contained in:
parent
6008b1a96c
commit
c735786ceb
|
@ -3548,6 +3548,9 @@ class TrainerGroupHeader:
|
||||||
if self.group_id == 0x0C:
|
if self.group_id == 0x0C:
|
||||||
# CAL appears a third time with third-stage evos (meganium, typhlosion, feraligatr)
|
# CAL appears a third time with third-stage evos (meganium, typhlosion, feraligatr)
|
||||||
max_id += 1
|
max_id += 1
|
||||||
|
elif self.group_id == 0x29:
|
||||||
|
# there's a missing supernerd :(
|
||||||
|
max_id += 1
|
||||||
|
|
||||||
for trainer_id in range(min_id, max_id+1):
|
for trainer_id in range(min_id, max_id+1):
|
||||||
trainer_header = TrainerHeader(address=current_address, trainer_group_id=self.group_id, trainer_id=trainer_id, parent=self)
|
trainer_header = TrainerHeader(address=current_address, trainer_group_id=self.group_id, trainer_id=trainer_id, parent=self)
|
||||||
|
|
Loading…
Reference in New Issue