From 321f06e6eecc14e3c8caf5a30e541d7d06e074b7 Mon Sep 17 00:00:00 2001 From: jacklak-redstone Date: Sat, 31 Jan 2026 11:35:36 -0500 Subject: [PATCH] rank -> role, add alias `search` for `google` --- cogs/randcommands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/randcommands.py b/cogs/randcommands.py index e0637d2..5bbf244 100644 --- a/cogs/randcommands.py +++ b/cogs/randcommands.py @@ -188,7 +188,7 @@ async def slap(self, ctx, user: discord.Member): async def unslap(self, ctx, user: discord.Member): slap_role = discord.utils.get(ctx.guild.roles, name="Slapped") if slap_role is None: - return await reply(ctx, "No slapped rank :(") + return await reply(ctx, "No slapped role :(") if slap_role not in user.roles: return await reply(ctx, "User is not slapped.") await user.remove_roles(slap_role) @@ -206,7 +206,7 @@ async def pikl(self, ctx, user: discord.Member): await asyncio.sleep(120) await user.remove_roles(pikl_role) - @commands.command(help="Googles something.", aliases=["lmgtfy"]) + @commands.command(help="Googles something.", aliases=["lmgtfy", "search"]) async def google(self, ctx, *, query): await reply(ctx, f"")