feat: create minesweeper game with v2 components

Introduces a new button-based Minesweeper mini-game in cogs/fun/minesweeper.py and registers it in the help command. Updates bot status messages in bot.py. Improves hackban embed formatting and adds author info in cogs/moderation/hackban.py.
This commit is contained in:
neoarz
2025-09-15 17:20:59 -04:00
parent 134b11cb59
commit 953246688d
4 changed files with 210 additions and 12 deletions

2
bot.py
View File

@@ -193,7 +193,7 @@ class DiscordBot(commands.Bot):
"""
Setup the game status task of the bot.
"""
statuses = ["with you!", "with Krypton!", "with humans!"]
statuses = ["with you!", "with neo!", "with humans!", "learning rust!"]
await self.change_presence(activity=discord.Game(random.choice(statuses)))
@status_task.before_loop