diff options
Diffstat (limited to 'src/modules/reply.js')
| -rw-r--r-- | src/modules/reply.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/reply.js b/src/modules/reply.js index bc2afe3..313c08a 100644 --- a/src/modules/reply.js +++ b/src/modules/reply.js @@ -20,7 +20,7 @@ module.exports = ({ bot, knex, config, commands }) => { // Anonymous replies only show the role, not the username commands.addInboxThreadCommand('anonreply', '[text$]', async (msg, args, thread) => { if (! args.text && msg.attachments.length === 0) { - utils.postError(msg.channel, 'Text or attachment required'); + utils.postError(msg.channel, 'Text or attachment required.'); return; } |