1
0
Fork 0
mirror of https://code.lenaisten.de/Lenaisten/lenaverse-bot.git synced 2024-11-22 06:53:00 +00:00

Always suppress_embeds

This commit is contained in:
Jörn-Michael Miehe 2023-11-21 14:57:51 +01:00
parent 534c31bbe4
commit 8c73e401ed

View file

@ -24,6 +24,7 @@ async def info(interaction: discord.Interaction) -> None:
await interaction.response.send_message( await interaction.response.send_message(
content=CONFIG.ev_info.info.content, content=CONFIG.ev_info.info.content,
suppress_embeds=True,
ephemeral=reply_private(interaction, CONFIG.ev_info.info.name), ephemeral=reply_private(interaction, CONFIG.ev_info.info.name),
) )
@ -57,6 +58,7 @@ async def join(interaction: discord.Interaction) -> None:
await interaction.response.send_message( await interaction.response.send_message(
content=CONFIG.ev_info.join.content, content=CONFIG.ev_info.join.content,
file=file, file=file,
suppress_embeds=True,
ephemeral=reply_private(interaction, CONFIG.ev_info.join.name), ephemeral=reply_private(interaction, CONFIG.ev_info.join.name),
) )
@ -78,6 +80,7 @@ async def fest(interaction: discord.Interaction) -> None:
await interaction.response.send_message( await interaction.response.send_message(
content=CONFIG.ev_info.fest.content, content=CONFIG.ev_info.fest.content,
suppress_embeds=True,
ephemeral=reply_private(interaction, CONFIG.ev_info.fest.name), ephemeral=reply_private(interaction, CONFIG.ev_info.fest.name),
) )
@ -93,6 +96,7 @@ async def aktion(interaction: discord.Interaction) -> None:
await interaction.response.send_message( await interaction.response.send_message(
content=CONFIG.ev_info.aktion.content, content=CONFIG.ev_info.aktion.content,
suppress_embeds=True,
ephemeral=reply_private(interaction, CONFIG.ev_info.aktion.name), ephemeral=reply_private(interaction, CONFIG.ev_info.aktion.name),
) )