From 377b4f710aaae729f6da6c4a0327795a18d9473b Mon Sep 17 00:00:00 2001 From: lyx0 Date: Mon, 25 Oct 2021 13:51:59 +0200 Subject: [PATCH] add a way to send a message without checking banphrases --- cmd/bot/bot.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cmd/bot/bot.go b/cmd/bot/bot.go index 33bf681..3090e47 100644 --- a/cmd/bot/bot.go +++ b/cmd/bot/bot.go @@ -51,5 +51,8 @@ func (b *Bot) Send(target, text string) { b.TwitchClient.Say(target, text) return } - +} + +func (b *Bot) SkipChecking(target, text string) { + b.TwitchClient.Say(target, text) }