Skip to content

Commit

Permalink
Remove most backticked currency labels
Browse files Browse the repository at this point in the history
  • Loading branch information
iiPythonx committed Dec 6, 2021
1 parent f7bd2f4 commit 650f10b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion prism/cmds/currency/banks.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async def bank(self, ctx, user: Option(discord.Member, "The user to view the ban
embed = self.core.embed(title = f"{self.core.frmt_name(ctx.author)}'s Bank", footer = ctx)
embed.add_field(
name = "Bank usage",
value = f"{self.core.format_coins(bank_bal)}/{self.core.format_coins(_bank_max_val)} coin(s) ({round(bank_bal / _bank_max_val, 2)}%)"
value = f"{self.core.format_coins(bank_bal)} coin(s) ({round(bank_bal / _bank_max_val, 2)}%)"
)
embed.set_thumbnail(url = user.avatar.url)
return await ctx.respond(embed = embed)
Expand Down
2 changes: 1 addition & 1 deletion prism/cmds/currency/beg.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async def beg(self, ctx) -> any:
# Handle embed
person = random.choice(self.people)
embed = self.core.embed(
title = f"{person['name']} gave you `{earn}` coins.",
title = f"{person['name']} gave you {earn} coins.",
description = f"\"{person['quote']()}\"",
footer = ctx
)
Expand Down
2 changes: 1 addition & 1 deletion prism/cmds/currency/daily.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ async def daily(self, ctx) -> any:
self.bot.cooldowns.add_cooldown("daily", ctx.author, self._cooldown)

# Handle embed
embed = self.core.small_embed(f"You redeemed `{self.core.format_coins(earn)}` coin(s).", footer = ctx)
embed = self.core.small_embed(f"You redeemed {self.core.format_coins(earn)} coin(s).", footer = ctx)
return await ctx.respond(embed = embed)

# Link
Expand Down
2 changes: 1 addition & 1 deletion prism/cmds/currency/slots.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async def slots(self, ctx, bet: Option(int, "The amount you want to bet.")) -> a
# Send embed
return await ctx.respond(embed = self.core.embed(
title = results,
description = f"{f'You won `{self.core.format_coins(earn)}`' if earn else f'You lost your `{self.core.format_coins(bet)}`'} coin(s)."
description = f"{f'You won `{self.core.format_coins(earn)}`' if earn else f'You lost your {self.core.format_coins(bet)}'} coin(s)."
))

# Link
Expand Down

0 comments on commit 650f10b

Please sign in to comment.