make snippets not-anonymous anymore

master
Matthew 2020-08-22 12:21:23 -04:00
parent 54edc4c863
commit d206111806
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ module.exports = ({ bot, knex, config, commands }) => {
args = args.map(arg => arg.value); args = args.map(arg => arg.value);
const rendered = renderSnippet(snippet.body, args); const rendered = renderSnippet(snippet.body, args);
const replied = await thread.replyToUser(msg.member, rendered, [], true); const replied = await thread.replyToUser(msg.member, rendered, [], false);
if (replied) msg.delete(); if (replied) msg.delete();
}); });