From 57139fb2cfb0d381173159085eba392cccdb3790 Mon Sep 17 00:00:00 2001 From: neoarz Date: Tue, 16 Sep 2025 12:33:45 -0400 Subject: [PATCH] chore: fix wording and update statuses --- bot.py | 2 +- cogs/moderation/warnings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index 8c686bc..1884f6d 100644 --- a/bot.py +++ b/bot.py @@ -184,7 +184,7 @@ class DiscordBot(commands.Bot): """ Setup the game status task of the bot. """ - statuses = ["with you!", "with neo!", "with humans!", "learning rust!"] + statuses = ["indexing sidestore docs!", "minecraft", "with humans!", "learning rust!"] await self.change_presence(activity=discord.Game(random.choice(statuses))) @status_task.before_loop diff --git a/cogs/moderation/warnings.py b/cogs/moderation/warnings.py index 14eb3ee..abb9787 100644 --- a/cogs/moderation/warnings.py +++ b/cogs/moderation/warnings.py @@ -131,7 +131,7 @@ class Warnings(commands.Cog, name="warnings"): total = await self.bot.database.remove_warn(warn_id, user.id, context.guild.id) embed = discord.Embed( title="Warning", - description=f"I've removed the warning **#{warn_id}** from **{member}**!\nTotal warns for this user: {total}", + description=f"Removed the warning **#{warn_id}** from **{member}**!\nTotal warns for this user: {total}", color=0x7289DA, ) embed.set_author(name="Moderation", icon_url="https://yes.nighty.works/raw/8VLDcg.webp")