diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-09-01 13:09:28 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-09-01 13:09:28 -0500 |
commit | 1a30d8b8a27f84e42b743e1ae886e2f66bea9335 (patch) | |
tree | 048ee65b3918894f1d1af11fa71b473f721a8acb /pokemontools/crystal.py | |
parent | 08241169c58554747f0810ec70dc0faf082f0af5 (diff) |
remove bryan_message for NotImplementedError
Nothing was using it.
Diffstat (limited to 'pokemontools/crystal.py')
-rw-r--r-- | pokemontools/crystal.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/pokemontools/crystal.py b/pokemontools/crystal.py index a5ea7b6..e79cf6d 100644 --- a/pokemontools/crystal.py +++ b/pokemontools/crystal.py @@ -43,9 +43,6 @@ trigger_byte_size = 8 signpost_byte_size = 5 people_event_byte_size = 13 -# a message to show with NotImplementedErrors -bryan_message = "bryan hasn't got to this yet" - max_texts = 3 text_count = 0 texts = [] @@ -760,8 +757,6 @@ class OldTextScript: return commands def get_dependencies(self, recompute=False, global_dependencies=set()): - #if recompute: - # raise NotImplementedError(bryan_message) global_dependencies.update(self.dependencies) return self.dependencies @@ -1602,7 +1597,6 @@ class PokemonParam(SingleByteParam): class PointerParamToItemAndLetter(MultiByteParam): # [2F][2byte pointer to item no + 0x20 bytes letter text] - #raise NotImplementedError(bryan_message) pass @@ -1645,7 +1639,6 @@ class MoveParam(SingleByteParam): class MenuDataPointerParam(PointerLabelParam): # read menu data at the target site - #raise NotImplementedError(bryan_message) pass |