From 73dc6f047da35992773bee7e1b511b41f8ae9ac3 Mon Sep 17 00:00:00 2001 From: Chris Sexton Date: Wed, 26 Dec 2018 23:23:22 -0500 Subject: [PATCH] twitch: streaming --- plugins/twitch/twitch.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/twitch/twitch.go b/plugins/twitch/twitch.go index 2d5efb7..941b55a 100644 --- a/plugins/twitch/twitch.go +++ b/plugins/twitch/twitch.go @@ -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 screaming.") + p.Bot.SendMessage(channel, twitcher.name+" is not streaming.") } else { - p.Bot.SendMessage(channel, twitcher.name+" is screaming "+game+" at "+twitcher.URL()) + p.Bot.SendMessage(channel, twitcher.name+" is streaming "+game+" at "+twitcher.URL()) } } else if game == "" { if twitcher.game != "" { - p.Bot.SendMessage(channel, twitcher.name+" just stopped screaming.") + p.Bot.SendMessage(channel, twitcher.name+" just stopped streaming.") } twitcher.game = "" } else { if twitcher.game != game { - p.Bot.SendMessage(channel, twitcher.name+" just started screaming "+game+" at "+twitcher.URL()) + p.Bot.SendMessage(channel, twitcher.name+" just started streaming "+game+" at "+twitcher.URL()) } twitcher.game = game }