Make action.GLYPHS a function, action.get_glyphs.
[naja.git] / naja / widgets / tile.py
index cf6f04c92d4ef498163dc1f694ff6255fca46af7..e925674b44aae8b3440a73044c5969eefcc1b747 100644 (file)
@@ -117,7 +117,7 @@ class TileWidget(Widget):
     def _prepare_action(self, action, y_offset):
         x_offset = self._prepare_lock(action, y_offset)
         if self.board_pos != self.state.player.position:
-            for glyph in action.GLYPHS:
+            for glyph in action.get_glyphs():
                 img = resources.get_image(glyph, transforms=(EIGHT_BIT,))
                 self.surface.blit(img, (x_offset, y_offset + 4))
                 x_offset += img.get_width()