From 9088aafc9f5f35da438c95bd8d0b17e0461d9c49 Mon Sep 17 00:00:00 2001 From: Stefano Rivera Date: Fri, 16 May 2014 22:22:26 +0200 Subject: [PATCH] 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 --- naja/actions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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']) -- 2.34.1