summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2013-09-01 15:49:14 -0500
committerBryan Bishop <kanzure@gmail.com>2013-09-01 15:49:17 -0500
commita1d9fd778dd8c86c810583c9c6bf76f709a35041 (patch)
tree69db99aeaa3ef3a57d04d14f1e0c18c5953258e5
parent5febb076543435ee05d3e3f73fe7c148c4b10ec0 (diff)
fix typo in TrainerGroupTable assert message
-rw-r--r--pokemontools/crystal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemontools/crystal.py b/pokemontools/crystal.py
index eb1d8cb..753095a 100644
--- a/pokemontools/crystal.py
+++ b/pokemontools/crystal.py
@@ -3860,7 +3860,7 @@ class TrainerGroupTable:
"""
def __init__(self):
- assert 0x43 in trainer_group_maximums.keys(), "TrainerGroupTable should onyl be created after all the trainers have been found"
+ assert 0x43 in trainer_group_maximums.keys(), "TrainerGroupTable should only be created after all the trainers have been found"
self.address = trainers.trainer_group_pointer_table_address
self.bank = pointers.calculate_bank(trainers.trainer_group_pointer_table_address)
self.label = Label(name="TrainerGroupPointerTable", address=self.address, object=self)