2016-10-09 19:14:02 +00:00
|
|
|
"use strict";
|
|
|
|
|
2017-03-11 18:09:37 +00:00
|
|
|
var Chan = require("../../models/chan");
|
|
|
|
var Msg = require("../../models/msg");
|
|
|
|
|
2016-03-14 04:21:42 +00:00
|
|
|
exports.commands = ["topic"];
|
2015-09-30 22:39:57 +00:00
|
|
|
|
2016-03-14 04:21:42 +00:00
|
|
|
exports.input = function(network, chan, cmd, args) {
|
2017-03-11 18:09:37 +00:00
|
|
|
if (chan.type !== Chan.Type.CHANNEL) {
|
|
|
|
chan.pushMessage(this, new Msg({
|
|
|
|
type: Msg.Type.ERROR,
|
|
|
|
text: `${cmd} command can only be used in channels.`
|
|
|
|
}));
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2017-04-19 19:27:26 +00:00
|
|
|
network.irc.setTopic(chan.name, args.join(" "));
|
2016-03-06 09:24:56 +00:00
|
|
|
return true;
|
2014-09-13 21:29:45 +00:00
|
|
|
};
|