Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

incorrect plural and formatting of blåhaj #1323

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions cogs/memes.py
Original file line number Diff line number Diff line change
Expand Up @@ -599,18 +599,18 @@ async def hug(self, ctx: KurisuContext, u: discord.Member):

@commands.command(hidden=True)
async def blahaj(self, ctx: KurisuContext, money: float):
"""Displays how many Blahajes you could buy with a given amount of money. ($ or €)"""
"""Displays how many Blåhajs you could buy with a given amount of money. ($ or €)"""
# blahaj. takes usd or eur
blahaj_link = "https://nintendohomebrew.com/assets/img/blahaj.png"
blahaj_price = 30 # should we handle eur and usd price difference properly?
if money < blahaj_price:
text = "You can't even buy a Blahaj! Get more money, then buy a Blahaj."
text = "You can't even buy a Blåhaj! Get more money, then buy a Blåhaj."
elif money // blahaj_price == 1:
text = "You could buy one Blahaj with that. Think about it."
text = "You could buy one Blåhaj with that. Think about it."
elif money > blahaj_price * 100:
text = "You could buy the entire stock. Think about it."
else:
text = f"You could buy {int(money // blahaj_price)} Blahajes with that. Think about it."
text = f"You could buy {int(money // blahaj_price)} Blåhajs with that. Think about it."
await self._meme(ctx, text, True, blahaj_link)

@is_staff("Helper")
Expand Down