From 508b78fce2f6e988fcad10961deb33a23daf16f5 Mon Sep 17 00:00:00 2001 From: santiago Date: Sat, 23 Feb 2019 11:33:22 -0300 Subject: [PATCH] Allow users to be mentioned in botMentionResponse --- README.md | 2 +- src/main.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b2b9fc9..f97fb39 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ These go in `config.json`. See also `config.example.json`. |allowUserClose|false|If set to true, users can use the close command to close threads by themselves from their DMs with the bot| |alwaysReplyAnon|false|If `alwaysReply` is set to true, this option controls whether the auto-reply is anonymous| |alwaysReply|false|If set to true, all messages in modmail threads will be relayed back to the user, even ones without `!r`| -|botMentionResponse|None|If set, the bot auto-responds to bot mentions with this message| +|botMentionResponse|None|If set, the bot auto-responds to bot mentions with this message. Allows `{userMention}` to be added to mention the user who mentioned the bot.| |closeMessage|None|The bot's message to the user when the thread is closed| |enableGreeting|false|Set to true to send a welcome message to new main guild members. Requires `mainGuildId` to be set.| |greetingAttachment|None|Path to an image or other attachment to send along with the greeting| diff --git a/src/main.js b/src/main.js index 37e698d..b908bfc 100644 --- a/src/main.js +++ b/src/main.js @@ -175,7 +175,7 @@ bot.on('messageCreate', async msg => { // Send an auto-response to the mention, if enabled if (config.botMentionResponse) { - bot.createMessage(msg.channel.id, config.botMentionResponse); + bot.createMessage(msg.channel.id, config.botMentionResponse.replace(/{userMention}/g, `<@${msg.author.id}>`)); } });