add a way to send a message without checking banphrases

This commit is contained in:
lyx0 2021-10-25 13:51:59 +02:00
parent e901bcef85
commit 377b4f710a

View file

@ -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)
}