diff --git a/commands/react.js b/commands/react.js index dbfd35d..bc1335f 100644 --- a/commands/react.js +++ b/commands/react.js @@ -1,10 +1,6 @@ module.exports = { name: 'react', - description: `Automatically react with specified emojis to multiple users’ messages, or stop reacting.\n - Usage: - .react ... - React to messages from multiple users with specified emojis. - Example: \`.react 12345,67890 :smile: :thumbsup:\` - .react stop - Stop reacting to users' messages.`, + description: `Automatically react with specified emojis to multiple users’ messages, or stop reacting.`, async execute(message, args, deleteTimeout) { if (args.length === 0) { if (message.client.targetReactUserIds && message.client.reactEmojis) { diff --git a/commands/reply.js b/commands/reply.js index e80d8fd..6d35360 100644 --- a/commands/reply.js +++ b/commands/reply.js @@ -1,10 +1,6 @@ module.exports = { name: 'reply', - description: `Automatically reply with a specified message to multiple users’ messages, or stop replying.\n - Usage: - .reply - Automatically reply to messages from multiple users with the specified message. - Example: \`.reply 12345,67890 Hello there!\` - .reply stop - Stop replying to users' messages.`, + description: `Automatically reply with a specified message to multiple users’ messages, or stop replying.`, async execute(message, args, deleteTimeout) { if (args.length === 0) { if (message.client.targetReplyUserIds && message.client.replyMessage) {