X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Factions.py;h=7ed4c6b7fae55a7d49d2ec2d229ff0a05d36c422;hb=023db05135e4a7b6d3bd4726de475dcdbf386372;hp=2def1cfaf0a8f90bddd27dbc085423ad00074ad4;hpb=1043032f980df1cf01f6d31fc5dc6774c1a3d846;p=naja.git diff --git a/naja/actions.py b/naja/actions.py index 2def1cf..7ed4c6b 100644 --- a/naja/actions.py +++ b/naja/actions.py @@ -9,7 +9,7 @@ class LocationAction(object): """ TEXT = None - GLYPHS = (ACTION_GLYPHS.NOTHING,) + GLYPHS = tuple() MSB_GLYPH = None def __init__(self, required_bits, **data): @@ -66,6 +66,7 @@ class LocationAction(object): class DoNothing(LocationAction): TEXT = "No effect." + GLYPHS = (ACTION_GLYPHS.NOTHING,) def perform_action(self, board, location): pass @@ -142,7 +143,7 @@ class ShiftLocations(LocationAction): GLYPHS = (ACTION_GLYPHS.CHANGE_BOARD,) def perform_action(self, board, location): - sound.play_sound('change.ogg') + sound.play_sound('grind.ogg') board.shift_locations(self.data['direction']) @@ -151,7 +152,7 @@ class RotateLocations(LocationAction): GLYPHS = (ACTION_GLYPHS.CHANGE_BOARD,) def perform_action(self, board, location): - sound.play_sound('change.ogg') + sound.play_sound('grind.ogg') board.rotate_locations(self.data['rot_direction'])