From 7889bbb96765ba1b0761a3cdc97a9646f7ff02fe Mon Sep 17 00:00:00 2001 From: Matthieu Grieger Date: Mon, 29 Dec 2014 02:36:00 -0800 Subject: [PATCH] Fixed skip messages not appearing in chat --- commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.go b/commands.go index 1e35372..b46de84 100644 --- a/commands.go +++ b/commands.go @@ -179,7 +179,7 @@ func skip(user string, admin bool) error { return errors.New("An error occurred while stopping the current song.") } } else { - return errors.New("Not enough skips have been reached to skip the song.") + return nil } } else { return errors.New("An error occurred while adding a skip to the current song.")