From bd95999fd1454c4d191496b8eb548e0f1b478a1a Mon Sep 17 00:00:00 2001 From: Mallory <53388337+riko@users.noreply.github.com> Date: Sat, 20 Jul 2024 23:33:41 -0400 Subject: [PATCH] =?UTF-8?q?incorrect=20plural=20and=20formatting=20of=20bl?= =?UTF-8?q?=C3=A5haj=20(#1323)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cogs/memes.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cogs/memes.py b/cogs/memes.py index e8424885..3a82ded4 100644 --- a/cogs/memes.py +++ b/cogs/memes.py @@ -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")