diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-05-20 02:50:21 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-05-20 02:50:21 -0500 |
commit | c08a543620ff037578e099f6ad8808358c1951ed (patch) | |
tree | bbe8d3d0ca676d03775d35ddc3dabd941e881561 /extras/crystal.py | |
parent | fafb53ebf94e1501bf285c0229fbd61cc3755f35 (diff) |
fix duplicate BENNY trainer name
Diffstat (limited to 'extras/crystal.py')
-rw-r--r-- | extras/crystal.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/extras/crystal.py b/extras/crystal.py index 88a7f1421..69cd25e9c 100644 --- a/extras/crystal.py +++ b/extras/crystal.py @@ -3633,6 +3633,10 @@ class TrainerHeader: seed = trainer_group_names[self.trainer_group_id]["name"]+"_"+seed[-x:] elif self.trainer_group_id == 0x1f and "EXECUTIVE" in seed: seed = "GRUNT_"+seed + elif self.trainer_group_id == 0x2d and "BENNY" in seed.upper(): + seed = "BIKER_BENNY" + elif self.trainer_group_id == 0x24 and "BENNY" in seed.upper(): + seed = "BUG_CATCHER_BENNY" return string.capwords(seed).\ replace("@", "").\ |