Merge pull request #122 from Felanbird/minor/remove-status-alias
Removed status alias from justlog status
This commit is contained in:
commit
7d4ca7307c
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue