commit
5e0a12b124
@ -3,10 +3,14 @@
|
|||||||
const Chan = require("../../models/chan");
|
const Chan = require("../../models/chan");
|
||||||
const Msg = require("../../models/msg");
|
const Msg = require("../../models/msg");
|
||||||
|
|
||||||
exports.commands = ["mode", "op", "deop", "hop", "dehop", "voice", "devoice"];
|
exports.commands = ["mode", "umode", "op", "deop", "hop", "dehop", "voice", "devoice"];
|
||||||
|
|
||||||
exports.input = function ({irc, nick}, chan, cmd, args) {
|
exports.input = function ({irc, nick}, chan, cmd, args) {
|
||||||
if (cmd !== "mode") {
|
if (cmd === "umode") {
|
||||||
|
irc.raw("MODE", nick, ...args);
|
||||||
|
|
||||||
|
return;
|
||||||
|
} else if (cmd !== "mode") {
|
||||||
if (chan.type !== Chan.Type.CHANNEL) {
|
if (chan.type !== Chan.Type.CHANNEL) {
|
||||||
chan.pushMessage(
|
chan.pushMessage(
|
||||||
this,
|
this,
|
||||||
|
Loading…
Reference in New Issue
Block a user