From: Chris Koeritz Date: Wed, 4 Dec 2013 02:54:40 +0000 (-0500) Subject: fixed usage of play to pick up our version of sound player. X-Git-Tag: 2.140.90~852 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=29190d88923f6281801872a80811faf6c2d7943e;p=feisty_meow.git fixed usage of play to pick up our version of sound player. --- 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 }