From 9c7f918a0757ca2cac11c95c526b5c701a13b849 Mon Sep 17 00:00:00 2001 From: lyx0 Date: Fri, 15 Oct 2021 18:45:17 +0200 Subject: [PATCH] still can't alphabet correctly --- pkg/handlers/command.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/handlers/command.go b/pkg/handlers/command.go index a95aace..043ea6c 100644 --- a/pkg/handlers/command.go +++ b/pkg/handlers/command.go @@ -107,9 +107,6 @@ func HandleCommand(message twitch.PrivateMessage, twitchClient *twitch.Client, u commands.Uptime(message.Channel, cmdParams[1], twitchClient) return } - case "xd": - commands.Xd(message.Channel, twitchClient) - return case "weather": if msgLen == 1 { twitchClient.Say(message.Channel, "Usage: ()weather [location]") @@ -118,6 +115,9 @@ func HandleCommand(message twitch.PrivateMessage, twitchClient *twitch.Client, u commands.Weather(message.Channel, message.Message[9:len(message.Message)], twitchClient) return } + case "xd": + commands.Xd(message.Channel, twitchClient) + return }