diff --git a/discord/dad.go b/discord/dad.go index 10d999e..7744e99 100644 --- a/discord/dad.go +++ b/discord/dad.go @@ -24,7 +24,7 @@ func init() { }, run: func(cmd commandInit) (string, error) { if !memeRateLimit.Try() { - return "Woah, slow down!", nil + return "", nil } req, err := http.NewRequest(http.MethodGet, dadJokeAPI, nil) diff --git a/discord/history.go b/discord/history.go index 367f4e6..3b5c26f 100644 --- a/discord/history.go +++ b/discord/history.go @@ -17,10 +17,6 @@ func init() { return true }, run: func(cmd commandInit) (string, error) { - if !memeRateLimit.Try() { - return "Woah, slow down!", nil - } - args := strings.Fields(cmd.message.Content) if len(args) < 2 { return "You must give this command a Minecraft username", nil diff --git a/discord/inspire.go b/discord/inspire.go index d412128..2e89db9 100644 --- a/discord/inspire.go +++ b/discord/inspire.go @@ -9,7 +9,7 @@ func init() { }, run: func(cmd commandInit) (string, error) { if !memeRateLimit.Try() { - return "Woah, slow down!", nil + return "", nil } sendTyping(cmd.session, cmd.message.ChannelID) diff --git a/discord/insult.go b/discord/insult.go index 28eaeea..f0ee2d9 100644 --- a/discord/insult.go +++ b/discord/insult.go @@ -14,7 +14,7 @@ func init() { }, run: func(cmd commandInit) (string, error) { if !memeRateLimit.Try() { - return "Woah, slow down!", nil + return "", nil } fields := strings.Fields(cmd.message.Content)