diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-24 15:41:06 +0000 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-24 15:41:06 +0000 |
commit | 9815cd8953b6c1f97620a0efdeb0cc3fcf040175 (patch) | |
tree | 34e988310d9eaf8dd42e847a2cef24becb7a6d83 /src | |
parent | 7f50d63e5245f5d1c048ef39169e6511c500ec86 (diff) | |
download | tanzanite-9815cd8953b6c1f97620a0efdeb0cc3fcf040175.tar.gz tanzanite-9815cd8953b6c1f97620a0efdeb0cc3fcf040175.tar.bz2 tanzanite-9815cd8953b6c1f97620a0efdeb0cc3fcf040175.zip |
fix(PriceCommand): remove random **
Diffstat (limited to 'src')
-rw-r--r-- | src/commands/utilities/price.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/utilities/price.ts b/src/commands/utilities/price.ts index 0495961..b0a7428 100644 --- a/src/commands/utilities/price.ts +++ b/src/commands/utilities/price.ts @@ -88,7 +88,7 @@ export default class PriceCommand extends BushCommand { if (bazaar.products?.[parsedItem]) { const bazaarPriceEmbed = new Embed() .setColor(errors?.length ? util.colors.warn : util.colors.success) - .setTitle(`Bazaar Information for ${util.format.input(parsedItem)}**`) + .setTitle(`Bazaar Information for ${util.format.input(parsedItem)}`) .addField({ name: 'Sell Price', value: addBazaarInformation('sellPrice', 2, true) }) .addField({ name: 'Buy Price', value: addBazaarInformation('buyPrice', 2, true) }) .addField({ |