Fixed an oversight with the prepend sound.

This commit is contained in:
Storm dragon 2016-01-28 20:02:28 -05:00
parent 1804403139
commit 261396ee52
1 changed files with 2 additions and 2 deletions

View File

@ -426,9 +426,9 @@ fi
#Play the prepended sound if one is selected
#There will be a slight gap between the prepended sound and the actual chiming.
#This is to simulate real clocks based on my experience.
if [ "$minute" -eq "0" ]; then
if [ $minute -eq 0 ]; then
if [ -f "$soundPack/prepend.ogg" ] ; then
$soundCommand "$prependSound"
$soundCommand "$soundPack/prepend.ogg"
fi
fi