diff --git a/main.py b/main.py index 0dfec4d..3cb103d 100644 --- a/main.py +++ b/main.py @@ -60,7 +60,7 @@ bot.qrm.debug_mode = debug_mode # --- Commands --- -@bot.command(name="restart", category=cmn.cat.admin) +@bot.command(name="restart", aliases=["rs"], category=cmn.cat.admin) @commands.check(cmn.check_if_owner) async def _restart_bot(ctx: commands.Context): """Restarts the bot.""" @@ -71,7 +71,7 @@ async def _restart_bot(ctx: commands.Context): await bot.logout() -@bot.command(name="shutdown", category=cmn.cat.admin) +@bot.command(name="shutdown", aliases=["shut"], category=cmn.cat.admin) @commands.check(cmn.check_if_owner) async def _shutdown_bot(ctx: commands.Context): """Shuts down the bot."""