diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-05-19 18:36:11 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-05-19 18:36:11 -0500 |
commit | 2f470415e18afa2e1274c19ada09a04c88a9337b (patch) | |
tree | 140050c6e728c33a09e023fa33304dcc576991fb /extras | |
parent | c735786cebcaf90f314f0c048c5c672d313c6507 (diff) |
add two missing biker trainer headers
Diffstat (limited to 'extras')
-rw-r--r-- | extras/crystal.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/extras/crystal.py b/extras/crystal.py index a6951e7f2..53803fca8 100644 --- a/extras/crystal.py +++ b/extras/crystal.py @@ -3551,6 +3551,9 @@ class TrainerGroupHeader: elif self.group_id == 0x29: # there's a missing supernerd :( max_id += 1 + elif self.group_id == 0x2D: + # missing bikers + max_id += 2 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) |