summaryrefslogtreecommitdiff
path: root/theo.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-07-29 19:27:37 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-07-29 19:27:37 +0200
commit6e30eab40b911e7abc168f1380465e599395587e (patch)
tree2524fa3342f94de005dfaafec601a46029670b91 /theo.go
parent0cd984ce8208816b048fb3badfd24ef218f8c778 (diff)
Replace Privmsg with Notice
Diffstat (limited to 'theo.go')
-rw-r--r--theo.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/theo.go b/theo.go
index fe246d7..2da46e2 100644
--- a/theo.go
+++ b/theo.go
@@ -8,7 +8,7 @@ import (
type Theo struct{ Command }
func (_ Theo) Handle(conn *irc.Conn, line *irc.Line) {
- conn.Privmsg(line.Target(), theo.Theo())
+ conn.Notice(line.Target(), theo.Theo())
}
func init() {