mirror of
https://github.com/LBRYFoundation/lbry-wunderbot.git
synced 2025-08-23 09:37:27 +00:00
15 lines
No EOL
373 B
JavaScript
15 lines
No EOL
373 B
JavaScript
/*'use strict';
|
|
// Moderation module, handles banning and kicking and more...
|
|
let hasPerms = require('../helpers.js').hasPerms;
|
|
|
|
exports.commands = [
|
|
"m"
|
|
]
|
|
|
|
exports.m = {
|
|
usage: "<subcommand> <reason>",
|
|
description: 'ban: bans the user with the reason\n kick: get adress for your deposits\n',
|
|
process: function(bot,msg,suffix){
|
|
console.log(msg.member.user);
|
|
}
|
|
}*/ |