From c08a543620ff037578e099f6ad8808358c1951ed Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Sun, 20 May 2012 02:50:21 -0500 Subject: [PATCH] fix duplicate BENNY trainer name --- extras/crystal.py | 4 ++++ 1 file changed, 4 insertions(+) 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("@", "").\