Make action.GLYPHS a function, action.get_glyphs.
[naja.git] / naja / widgets / info_area.py
index 7dbef1b70c226402303d15e3d4fdb553a029c066..40dcdc031d68267388f52b32644107a0811495ba 100644 (file)
@@ -22,14 +22,14 @@ from naja.widgets.text import TextBoxWidget, TextWidget
 HINTS = {
     ACT: ("Choose an action using the Up/Down keys.\n"
           "Press Return to execute the action."),
-    EXAMINE: "Select a card to examine using the arrow keys.",
+    EXAMINE: "Select a tile to examine using the arrow keys.",
 }
 
-HINT_LEGAL_MOVE = "\nPress Return to move to this card."
+HINT_LEGAL_MOVE = "\nPress Return to move to this tile."
 
 TITLES = {
     ACT: "Choose an Action",
-    EXAMINE: "Select a Card",
+    EXAMINE: "Select a Tile",
 }
 
 
@@ -148,7 +148,7 @@ class InfoAreaWidget(Widget):
         else:
             glyphs_x_offset = INFO_LEFT_PADDING
 
-        for glyph in action.GLYPHS:
+        for glyph in action.get_glyphs():
             img = resources.get_image(
                 glyph, transforms=(EIGHT_BIT, blender(PALETTE.GREY)))
             self.surface.blit(img, (glyphs_x_offset, glyphs_y_offset - 4))