summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorHubert Hirtz <hubert@hirtzfr.eu>2020-08-01 14:23:28 +0200
committerHubert Hirtz <hubert@hirtzfr.eu>2020-08-01 14:23:28 +0200
commita323fdbd5029d91c544e11385ab589a83a8150a3 (patch)
treeb320910b51933f396c958714f3d245ee94547663 /cmd
parentRandomize welcome messages (diff)
Add /quote command
Diffstat (limited to 'cmd')
-rw-r--r--cmd/irc/main.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/irc/main.go b/cmd/irc/main.go
index 7702e94..51a6b0a 100644
--- a/cmd/irc/main.go
+++ b/cmd/irc/main.go
@@ -229,6 +229,8 @@ func handleInput(s *irc.Session, buffer, content string) {
}
s.PrivMsg(buffer, args)
+ case "QUOTE":
+ s.SendRaw(args)
case "J", "JOIN":
s.Join(args)
case "PART":