Compare commits
2 commits
55867ea12a
...
4c3c030112
Author | SHA1 | Date | |
---|---|---|---|
4c3c030112 | |||
a2aae0e9eb |
2 changed files with 7 additions and 7 deletions
|
@ -3,8 +3,6 @@ from .suggestions import Suggestions, approve_context, deny_context
|
|||
|
||||
async def setup(bot):
|
||||
await bot.add_cog(Suggestions(bot))
|
||||
|
||||
async def setup(bot):
|
||||
bot.tree.add_command(approve_context)
|
||||
bot.tree.add_command(deny_context)
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ import datetime
|
|||
import re
|
||||
import typing
|
||||
import discord
|
||||
from redbot.core import app_commands, Config, checks, commands
|
||||
from redbot.core import app_commands, Config, checks, commands, bot
|
||||
from redbot.core.bot import Red
|
||||
from redbot.core.utils.chat_formatting import humanize_list
|
||||
|
||||
|
@ -612,10 +612,11 @@ class SuggestionApproveModal(discord.ui.Modal, title="Approving suggestion..."):
|
|||
)
|
||||
|
||||
async def on_submit(self, interaction: discord.Interaction):
|
||||
cog = bot.get_cog('Suggestions')
|
||||
if self.reason.value != "":
|
||||
await Suggestions._interaction_finish_suggestion(interaction, self.message, True, self.reason.value)
|
||||
await Suggestions._interaction_finish_suggestion(cog, interaction, self.message, True, self.reason.value)
|
||||
else:
|
||||
await Suggestions._interaction_finish_suggestion(interaction, self.message, True, None)
|
||||
await Suggestions._interaction_finish_suggestion(cog, interaction, self.message, True, None)
|
||||
await interaction.response.send_message(content="Suggestion approved!", ephemeral=True)
|
||||
|
||||
class SuggestionDenyModal(discord.ui.Modal, title="Denying suggestion..."):
|
||||
|
@ -632,10 +633,11 @@ class SuggestionDenyModal(discord.ui.Modal, title="Denying suggestion..."):
|
|||
)
|
||||
|
||||
async def on_submit(self, interaction: discord.Interaction):
|
||||
cog = bot.get_cog('Suggestions')
|
||||
if self.reason.value != "":
|
||||
await Suggestions._interaction_finish_suggestion(interaction, self.message, False, self.reason.value)
|
||||
await Suggestions._interaction_finish_suggestion(cog, interaction, self.message, False, self.reason.value)
|
||||
else:
|
||||
await Suggestions._interaction_finish_suggestion(interaction, self.message, False, None)
|
||||
await Suggestions._interaction_finish_suggestion(cog, interaction, self.message, False, None)
|
||||
await interaction.response.send_message(content="Suggestion denied!", ephemeral=True)
|
||||
|
||||
@app_commands.context_menu(name="Approve Suggestion")
|
||||
|
|
Loading…
Reference in a new issue