From 9815cd8953b6c1f97620a0efdeb0cc3fcf040175 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Thu, 24 Feb 2022 15:41:06 +0000 Subject: fix(PriceCommand): remove random ** --- src/commands/utilities/price.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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({ -- cgit