Make report channel configurable

pull/3/head
BodgeMaster 2023-01-13 20:50:57 +01:00
parent c4a7572248
commit 79577a59ad
1 changed files with 2 additions and 2 deletions

4
bot.py
View File

@ -65,9 +65,9 @@ async def report_message(interaction: discord.Interaction, message: discord.Mess
if not interaction.guild.id==config["guild"]:
return
await interaction.response.send_message(
f'Thanks for reporting this message by {message.author.mention} to our moderators.', ephemeral=True
f'Thanks for reporting.', ephemeral=True
)
log_channel = interaction.guild.get_channel(929345959501115422) # replace with your channel id
log_channel = interaction.guild.get_channel(config["report channel"])
embed = discord.Embed(title='Reported Message')
if message.content:
embed.description = message.content