diff --git a/modules/admin/award.py b/modules/admin/award.py index f7165db..0102bf3 100644 --- a/modules/admin/award.py +++ b/modules/admin/award.py @@ -10,7 +10,7 @@ class Award(commands.Cog): def __init__(self, bot: commands.Bot): self.bot = bot - @commands.command(name="award") + @commands.command(name="award", aliases=["aw"]) @commands.is_owner() async def award_command( self, diff --git a/modules/economy/slots.py b/modules/economy/slots.py index 7d93dac..b0d2f25 100644 --- a/modules/economy/slots.py +++ b/modules/economy/slots.py @@ -21,7 +21,7 @@ class Slots(commands.Cog): @commands.hybrid_command( name="slots", - description="Play the slots machine", + aliases=["slot"], ) @commands.guild_only() async def slots( diff --git a/modules/misc/uptime.py b/modules/misc/uptime.py index a45fb8c..81150f9 100644 --- a/modules/misc/uptime.py +++ b/modules/misc/uptime.py @@ -13,7 +13,7 @@ class Uptime(commands.Cog): self.bot: commands.Bot = bot self.start_time: datetime = discord.utils.utcnow() - @commands.hybrid_command(name="uptime") + @commands.hybrid_command(name="uptime", aliases=["ut"]) async def uptime(self, ctx: commands.Context[commands.Bot]) -> None: """ Uptime command. diff --git a/modules/moderation/cases.py b/modules/moderation/cases.py index 292d107..a452994 100644 --- a/modules/moderation/cases.py +++ b/modules/moderation/cases.py @@ -178,7 +178,7 @@ class Cases(commands.Cog): await menu.start() - @commands.hybrid_command(name="editcase", aliases=["ec"]) + @commands.hybrid_command(name="editcase", aliases=["ec", "uc"]) @commands.has_permissions(manage_messages=True) @commands.guild_only() async def edit_case_reason( diff --git a/modules/moderation/timeout.py b/modules/moderation/timeout.py index d85f0a3..eb010d8 100644 --- a/modules/moderation/timeout.py +++ b/modules/moderation/timeout.py @@ -17,7 +17,7 @@ class Timeout(commands.Cog): def __init__(self, bot: commands.Bot): self.bot = bot - @commands.hybrid_command(name="timeout", aliases=["to"]) + @commands.hybrid_command(name="timeout", aliases=["t", "to"]) @commands.has_permissions(moderate_members=True) @commands.bot_has_permissions(moderate_members=True) @commands.guild_only()