From 42cd3e69718d897486ad8c6cd4fdf780e1a1ab2d Mon Sep 17 00:00:00 2001 From: 41973452 <41973452+Felanbird@users.noreply.github.com> Date: Fri, 1 Oct 2021 06:32:17 -0400 Subject: [PATCH] Removed status alias from justlog status --- bot/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/commands.go b/bot/commands.go index b8565cf..82f153f 100644 --- a/bot/commands.go +++ b/bot/commands.go @@ -11,7 +11,7 @@ import ( func (b *Bot) handlePrivateMessageCommands(message twitch.PrivateMessage) { if contains(b.cfg.Admins, message.User.Name) { - if strings.HasPrefix(message.Message, "!justlog status") || strings.HasPrefix(message.Message, "!status") { + if strings.HasPrefix(message.Message, "!justlog status") { uptime := humanize.TimeSince(b.startTime) b.Say(message.Channel, message.User.DisplayName+", uptime: "+uptime) }