diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-05-19 18:33:42 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-05-19 18:33:42 -0500 |
commit | c735786cebcaf90f314f0c048c5c672d313c6507 (patch) | |
tree | 8efc92383b3ad72424585b1a036023e5a89af00d /extras/crystal.py | |
parent | 6008b1a96c4079b6ca164f814cdd5fb26d568969 (diff) |
fix missing supernerd markus
Diffstat (limited to 'extras/crystal.py')
-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 6f9fe9978..a6951e7f2 100644 --- a/extras/crystal.py +++ b/extras/crystal.py @@ -3548,6 +3548,9 @@ class TrainerGroupHeader: if self.group_id == 0x0C: # CAL appears a third time with third-stage evos (meganium, typhlosion, feraligatr) 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): trainer_header = TrainerHeader(address=current_address, trainer_group_id=self.group_id, trainer_id=trainer_id, parent=self) |