From 379891b2d09ced1187df3226f8693d39b64e36e2 Mon Sep 17 00:00:00 2001 From: mogad0n Date: Wed, 10 Mar 2021 19:33:48 +0530 Subject: initial commit --- wat/bot.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'wat/bot.go') diff --git a/wat/bot.go b/wat/bot.go index 100e4df..370641b 100644 --- a/wat/bot.go +++ b/wat/bot.go @@ -45,7 +45,7 @@ func (w *WatBot) HandleIrcMsg(c *irc.Client, m *irc.Message) { } func (w *WatBot) Admin(m *irc.Message) bool { - return m.Prefix.Host == "tripsit/operator/hibs" + return m.Prefix.Host == "mph.monster" } func (w *WatBot) Allowed(c string, r []string) bool { @@ -64,9 +64,9 @@ func (w *WatBot) CanRespond(m *irc.Message) bool { if w.Allowed(m.Prefix.Host, w.c.IgnoredHosts) { return false } - if !strings.Contains(m.Prefix.Host, "tripsit") { - return false - } + // if !strings.Contains(m.Prefix.Host, "") { + // return false + // } if !w.Allowed(m.Params[0], w.c.PermittedChannels) { return false } -- cgit v1.2.3