X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;ds=sidebyside;f=naja%2Factions.py;h=b492f809bced439332fb18ca4e09074e7b3bfeac;hb=84c542f883e16a7f40c70e8a7096b92c063a0e7f;hp=2def1cfaf0a8f90bddd27dbc085423ad00074ad4;hpb=1043032f980df1cf01f6d31fc5dc6774c1a3d846;p=naja.git diff --git a/naja/actions.py b/naja/actions.py index 2def1cf..b492f80 100644 --- a/naja/actions.py +++ b/naja/actions.py @@ -142,7 +142,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 +151,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'])