diff options
author | Joe Robinson <joe@grabyo.com> | 2016-10-14 18:17:34 +0100 |
---|---|---|
committer | Joe Robinson <joe@grabyo.com> | 2016-10-14 18:17:34 +0100 |
commit | 855db48bbba753508d68b7d91ec858855e003c9c (patch) | |
tree | 137e947aca4ae99cc9eb735874270691bd2a11de /index.js | |
parent | c797f12928e65722beea1265d0383fb10db010f3 (diff) |
Implement topic function
Diffstat (limited to 'index.js')
-rw-r--r-- | index.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -174,7 +174,7 @@ function sendPm(message, nick) { } function setTopic(channel, topic) { - client.send("TOPIC", channel, topic); + client.raw("TOPIC", channel, topic); } function joinChannel(channel, sendJoin) { |