From 29190d88923f6281801872a80811faf6c2d7943e Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Tue, 3 Dec 2013 21:54:40 -0500 Subject: [PATCH] fixed usage of play to pick up our version of sound player. --- scripts/core/functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index 903a17d1..9ae9e5d6 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -36,14 +36,14 @@ if [ -z "$skip_all" ]; then function success_sound() { if [ ! -z "$CLAM_FINISH_SOUND" ]; then - play "$CLAM_FINISH_SOUND" + bash $FEISTY_MEOW_SCRIPTS/multimedia/sound_play.sh "$CLAM_FINISH_SOUND" fi } function error_sound() { if [ ! -z "$CLAM_ERROR_SOUND" ]; then - play "$CLAM_ERROR_SOUND" + bash $FEISTY_MEOW_SCRIPTS/multimedia/sound_play.sh "$CLAM_ERROR_SOUND" fi } -- 2.34.1