lbry-wunderbot/bot/modules/moderation.js
Fillerino 6ce8aade5b Fixed formating and added prettier to pre-commit.
Fixed the formatting, added prettier to auto run on pre-commit.
2017-11-07 18:25:05 +01:00

15 lines
374 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);
}
}*/