diff options
author | Parker <contact@pkrm.dev> | 2024-12-03 06:05:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-03 06:05:14 +0000 |
commit | 15e33831639355546b32477a6870eb0a3ac47e24 (patch) | |
tree | a5455e0a8391747c7226a751354b7236c8c5d40b /code/cogs/bug.py | |
parent | fcbfe460701316ded25e29356ed1fda42386e5c0 (diff) | |
parent | ce18cd27488d90fbd0aae7319a36a89e9fa85aa7 (diff) |
Merge pull request #10 from PacketParker/dev
Update
Diffstat (limited to 'code/cogs/bug.py')
-rw-r--r-- | code/cogs/bug.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/code/cogs/bug.py b/code/cogs/bug.py index fecf5e6..aec51b6 100644 --- a/code/cogs/bug.py +++ b/code/cogs/bug.py @@ -15,7 +15,9 @@ class BugReport(discord.ui.Modal, title="Report a bug"): placeholder="EX: itsmefreddy01...", ) command = discord.ui.TextInput( - label="Command with error", placeholder="EX: skip...", required=True + label="Command with error", + placeholder="EX: autoplay, skip...", + required=True, ) report = discord.ui.TextInput( label="A detailed report of the bug", @@ -27,8 +29,8 @@ class BugReport(discord.ui.Modal, title="Report a bug"): async def on_submit(self, interaction: discord.Interaction): await interaction.response.send_message( - f"Thanks for your bug report. We will get back to you as soon as" - f" possible", + f"Thanks for your bug report. We will work on resolving the" + f" issue as soon as possible.", ephemeral=True, ) channel = self.bot.get_channel(BUG_CHANNEL_ID) |