aboutsummaryrefslogtreecommitdiff
path: root/commands/Moderation/kick.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/Moderation/kick.js')
-rw-r--r--commands/Moderation/kick.js15
1 files changed, 2 insertions, 13 deletions
diff --git a/commands/Moderation/kick.js b/commands/Moderation/kick.js
index c9d1d24..174e867 100644
--- a/commands/Moderation/kick.js
+++ b/commands/Moderation/kick.js
@@ -3,18 +3,7 @@
* Kick: Plugin for PokeBot that performs moderation actions.
* Copyright (C) 2018 TheEdge, jtsshieh, Alee
*
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * Licensed under the Open Software License version 3.0
*
* *************************************/
@@ -23,7 +12,7 @@ exports.run = async (bot, msg, args) => {
if (!msg.guild.member(bot.user).hasPermission('KICK_MEMBERS')) return msg.reply('I don\'t have permission to kick members.');
const member = msg.mentions.members.first();
- if (!member) return await msg.reply('Who am I gonna kick?');
+ if (!member) return await msg.reply('Who am I gonna kick? (Remember to @mention them)');
const reason = args.join(' ').slice(3 + member.user.id.length);
await member.kick(msg.author.tag + ': ' + (reason ? ': ' + reason : ''))