From 3d3631c65a5a727bc7cd6470e033ccf2a8f3bd26 Mon Sep 17 00:00:00 2001 From: WatDuhHekBro <44940783+WatDuhHekBro@users.noreply.github.com> Date: Tue, 15 Dec 2020 17:46:03 -0600 Subject: [PATCH] Fixed some inaccuracies in eco --- src/commands/fun/subcommands/eco-core.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/commands/fun/subcommands/eco-core.ts b/src/commands/fun/subcommands/eco-core.ts index 8aa4726..5723137 100644 --- a/src/commands/fun/subcommands/eco-core.ts +++ b/src/commands/fun/subcommands/eco-core.ts @@ -138,7 +138,7 @@ export const PayCommand = new Command({ }) }), number: new Command({ - run: "You must use the format `money send `!" + run: "You must use the format `eco pay `!" }), any: new Command({ async run({args, author, channel, guild, prompt}) { @@ -153,9 +153,9 @@ export const PayCommand = new Command({ if (amount <= 0) return channel.send("You must send at least one Mon!"); else if (sender.money < amount) - return channel.send("You don't have enough money to do that!", getMoneyEmbed(author)); + return channel.send("You don't have enough Mons to do that!", getMoneyEmbed(author)); else if (!guild) - return channel.send("You have to use this in a server if you want to send money with a username!"); + return channel.send("You have to use this in a server if you want to send Mons with a username!"); const username = args.join(" "); const member = ( @@ -167,11 +167,11 @@ export const PayCommand = new Command({ if (!member) return channel.send( - `Couldn't find a user by the name of \`${username}\`! If you want to send money to someone in a different server, you have to use their user ID!` + `Couldn't find a user by the name of \`${username}\`! If you want to send Mons to someone in a different server, you have to use their user ID!` ); - else if (member.user.id === author.id) return channel.send("You can't send money to yourself!"); + else if (member.user.id === author.id) return channel.send("You can't send Mons to yourself!"); else if (member.user.bot && process.argv[2] !== "dev") - return channel.send("You can't send money to a bot!"); + return channel.send("You can't send Mons to a bot!"); const target = member.user;