From d3db70e72d466c885d8312574961171c973e45f7 Mon Sep 17 00:00:00 2001 From: pocketjawa Date: Wed, 20 May 2020 21:45:30 -0400 Subject: [PATCH] Minor text fix (when nothing is provided to setplaying) --- commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.go b/commands.go index ebbe70e..bcf2917 100644 --- a/commands.go +++ b/commands.go @@ -159,7 +159,7 @@ func setNowPlaying(s *discordgo.Session, m *discordgo.Message, ctx *mux.Context) s.UpdateStatus(0, arg) resp = "Now playing: " + arg } else { - resp = "random" + resp = "Please tell me what to play!" } s.ChannelMessageSend(m.ChannelID, resp) }