diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-11-22 21:28:50 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-11-22 21:28:50 -0600 |
commit | bbebec611dbcfe0ea8e3f71188f6c7821878260b (patch) | |
tree | de9f4ef6124930a230e773e6010f9758d425e745 | |
parent | 504d9cc896db356012f6bf16894355f19f9469a4 (diff) |
fix call to item_label_by_id
-rw-r--r-- | pokemontools/crystal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemontools/crystal.py b/pokemontools/crystal.py index 83ee7dd..61142a4 100644 --- a/pokemontools/crystal.py +++ b/pokemontools/crystal.py @@ -778,7 +778,7 @@ HexByte=DollarSignByte class ItemLabelByte(DollarSignByte): def to_asm(self): - label = item_constants.item_constants.find_item_label_by_id(self.byte) + label = item_constants.find_item_label_by_id(self.byte) if label: return label elif not label: |