summaryrefslogtreecommitdiff
path: root/help.go
diff options
context:
space:
mode:
Diffstat (limited to 'help.go')
-rw-r--r--help.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/help.go b/help.go
index 22fa60e..c505d45 100644
--- a/help.go
+++ b/help.go
@@ -16,7 +16,7 @@ func (_ Help) Handle(conn *irc.Conn, line *irc.Line) {
}
sort.Sort(sort.StringSlice(msg))
for _, s := range msg {
- conn.Privmsg(line.Nick, s)
+ conn.Notice(line.Nick, s)
}
}