From: Stefano Rivera Date: Fri, 16 May 2014 20:22:26 +0000 (+0200) Subject: Ooops, that was a local filename that wasn't commited. And this change wasn't meant... X-Git-Tag: 0.1~187 X-Git-Url: https://git.ctpug.org.za/?p=naja.git;a=commitdiff_plain;h=9088aafc9f5f35da438c95bd8d0b17e0461d9c49 Ooops, that was a local filename that wasn't commited. And this change wasn't meant to be commited yet. Anyway: make a grind noise when modifying the board --- 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'])