From 03f979bde4b7d062b1ca6ced525bd89b7e009946 Mon Sep 17 00:00:00 2001 From: Chris Sexton Date: Mon, 22 Oct 2018 16:18:08 -0400 Subject: [PATCH] twitch: make things spooky --- 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 941b55a..2d5efb7 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 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 }