diff --git a/features/general.py b/features/general.py index 1b52347..57050a0 100644 --- a/features/general.py +++ b/features/general.py @@ -194,6 +194,14 @@ async def admin_help(self, interaction: discord.Interaction): "BRT": "America/Sao_Paulo", } + @app_commands.command(name="version", description="View the bot's current version.") + async def version(self, interaction: discord.Interaction): + embed = discord.Embed( + description=f"🤖 R7 Bot is running\n# {BOT_VERSION}", + color=discord.Color.blurple(), + ) + await interaction.response.send_message(embed=embed) + @app_commands.command( name="convert-time", description="Convert a date and time to all Discord timestamp formats.",