From 4d21f9c769ee8e16ced2040cf614b4c64cb3911c Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 18 Aug 2023 14:21:18 -0400 Subject: [PATCH] fix(issues): hopefully fixed it just not working lmao --- issues/issues.py | 28 ++++++---------------------- 1 file changed, 6 insertions(+), 22 deletions(-) diff --git a/issues/issues.py b/issues/issues.py index 537d7fb..fbd8fe2 100644 --- a/issues/issues.py +++ b/issues/issues.py @@ -66,37 +66,21 @@ class Issues(commands.Cog): if self.button_id == "cog_suggestion": self.cog_name = discord.ui.TextInput( - label="What cog is your feature request for?", + label="What cog is your suggestion for?", placeholder="If unsure, input 'GalaxyCogs'", style=discord.TextStyle.short, max_length=100 ) self.input_list.append(self.cog_name) if self.button_id == "cog_suggestion" or self.button_id == "bot_suggestion": - self.feature_request_description = discord.ui.TextInput( - label="Is your feature request related to a problem?", - placeholder="A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]", + self.suggestion_description = discord.ui.TextInput( + label="Describe your suggestion.", + placeholder="A clear and concise description of what the suggestion is.", style=discord.TextStyle.paragraph, max_length=2048 ) - self.solution = discord.ui.TextInput( - label="Solution", - placeholder="Provide a clear and concise description of the solution you'd like.", - style=discord.TextStyle.paragraph, - required=True, - max_length=2048 - ) - self.alternatives = discord.ui.TextInput( - label="Alternatives", - placeholder="Describe alternatives you've considered.", - style=discord.TextStyle.paragraph, - required=True, - max_length=2048 - ) - self.input_list.append(self.feature_request_description) - self.input_list.append(self.solution) - self.input_list.append(self.alternatives) - if self.button_id == "bot": + self.input_list.append(self.suggestion_description) + if self.button_id == "bug": self.bug_description = discord.ui.TextInput( label="Describe the bug", placeholder="A clear and concise description of what the bug is.",