twitch: make things spooky

This commit is contained in:
Chris Sexton 2018-10-22 16:18:08 -04:00 committed by Chris Sexton
parent 73f019a14a
commit 03f979bde4
1 changed files with 4 additions and 4 deletions

View File

@ -222,18 +222,18 @@ func (p *TwitchPlugin) checkTwitch(channel string, twitcher *Twitcher, alwaysPri
}
if alwaysPrintStatus {
if game == "" {
p.Bot.SendMessage(channel, twitcher.name+" is not streaming.")
p.Bot.SendMessage(channel, twitcher.name+" is not screaming.")
} else {
p.Bot.SendMessage(channel, twitcher.name+" is streaming "+game+" at "+twitcher.URL())
p.Bot.SendMessage(channel, twitcher.name+" is screaming "+game+" at "+twitcher.URL())
}
} else if game == "" {
if twitcher.game != "" {
p.Bot.SendMessage(channel, twitcher.name+" just stopped streaming.")
p.Bot.SendMessage(channel, twitcher.name+" just stopped screaming.")
}
twitcher.game = ""
} else {
if twitcher.game != game {
p.Bot.SendMessage(channel, twitcher.name+" just started streaming "+game+" at "+twitcher.URL())
p.Bot.SendMessage(channel, twitcher.name+" just started screaming "+game+" at "+twitcher.URL())
}
twitcher.game = game
}