aboutsummaryrefslogtreecommitdiff
path: root/bot.js
diff options
context:
space:
mode:
Diffstat (limited to 'bot.js')
-rw-r--r--bot.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot.js b/bot.js
index 1a40058..7605bf0 100644
--- a/bot.js
+++ b/bot.js
@@ -63,7 +63,7 @@ client.on('ready', async () => {
});
client.on('messageCreate', message => {
- if (message.content.trim() === "<@" + client.user.id + ">") {
+ if (message.content.trim() === "<@" + client.user.id + ">" || message.content.trim() === "<@!" + client.user.id + ">") {
message.reply(getHelp(message.guild, message.guild.id, message.author.id, true));
}
})