From 4448659dc0a7ceaff3028f3373ba76c2b07dfa88 Mon Sep 17 00:00:00 2001 From: Almeida Date: Wed, 28 Apr 2021 19:59:56 +0100 Subject: [PATCH] fix(SetCounterCmd): misleading messages (#188) --- backend/src/plugins/Counters/commands/SetCounterCmd.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/src/plugins/Counters/commands/SetCounterCmd.ts b/backend/src/plugins/Counters/commands/SetCounterCmd.ts index edabe2e7..0503b2fd 100644 --- a/backend/src/plugins/Counters/commands/SetCounterCmd.ts +++ b/backend/src/plugins/Counters/commands/SetCounterCmd.ts @@ -67,7 +67,7 @@ export const SetCounterCmd = guildCommand()({ let channel = args.channel; if (!channel && counter.per_channel) { - message.channel.createMessage(`Which channel's counter value would you like to add to?`); + message.channel.createMessage(`Which channel's counter value would you like to change?`); const reply = await waitForReply(pluginData.client, message.channel, message.author.id); if (!reply || !reply.content) { sendErrorMessage(pluginData, message.channel, "Cancelling"); @@ -85,7 +85,7 @@ export const SetCounterCmd = guildCommand()({ let user = args.user; if (!user && counter.per_user) { - message.channel.createMessage(`Which user's counter value would you like to add to?`); + message.channel.createMessage(`Which user's counter value would you like to change?`); const reply = await waitForReply(pluginData.client, message.channel, message.author.id); if (!reply || !reply.content) { sendErrorMessage(pluginData, message.channel, "Cancelling"); @@ -103,7 +103,7 @@ export const SetCounterCmd = guildCommand()({ let value = args.value; if (!value) { - message.channel.createMessage("How much would you like to add to the counter's value?"); + message.channel.createMessage("What would you like to set the counter's value to?"); const reply = await waitForReply(pluginData.client, message.channel, message.author.id); if (!reply || !reply.content) { sendErrorMessage(pluginData, message.channel, "Cancelling");