aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--commands/ban.js2
-rw-r--r--commands/kick.js2
-rw-r--r--commands/suggest.js1
3 files changed, 3 insertions, 2 deletions
diff --git a/commands/ban.js b/commands/ban.js
index a661417..adb8e43 100644
--- a/commands/ban.js
+++ b/commands/ban.js
@@ -29,7 +29,7 @@ module.exports.run = async (client, message, args) => {
const member = message.mentions.members.first();
if (!member) return message.reply("Uhh... Please mention a member first.");
member.ban(`Banned by ${message.author.tag} Reason: ` + mreason);
- message.reply(`${member.user.tag} has been banned! Reason: ` + mreason);
+ message.reply(`${member.user.tag} has been banned for the reason: ` + mreason);
};
exports.conf = {
diff --git a/commands/kick.js b/commands/kick.js
index d7f2dde..5928525 100644
--- a/commands/kick.js
+++ b/commands/kick.js
@@ -29,7 +29,7 @@ module.exports.run = async (client, message, args) => {
const member = message.mentions.members.first();
if (!member) return message.reply("Uhh... Please mention a member first.");
member.kick(`Kicked by: ${message.author.tag} Reason: ` + mreason);
- message.reply(`${member.user.tag} has been kicked! Reason: ` + mreason);
+ message.reply(`${member.user.tag} has been kicked for the reason: ` + mreason);
};
exports.conf = {
diff --git a/commands/suggest.js b/commands/suggest.js
index 23fc846..d8171ab 100644
--- a/commands/suggest.js
+++ b/commands/suggest.js
@@ -35,6 +35,7 @@ module.exports.run = async (client, message, args) => {
message.react('\u2705');
message.react('\u274E');
});
+ message.reply("Alright, your suggestion has been shown now.")
};
exports.conf = {