From bbebec611dbcfe0ea8e3f71188f6c7821878260b Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Fri, 22 Nov 2013 21:28:50 -0600 Subject: fix call to item_label_by_id --- pokemontools/crystal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v1.2.3