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:
parent
534c31bbe4
commit
8c73e401ed
1 changed files with 4 additions and 0 deletions
|
@ -24,6 +24,7 @@ async def info(interaction: discord.Interaction) -> None:
|
|||
|
||||
await interaction.response.send_message(
|
||||
content=CONFIG.ev_info.info.content,
|
||||
suppress_embeds=True,
|
||||
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(
|
||||
content=CONFIG.ev_info.join.content,
|
||||
file=file,
|
||||
suppress_embeds=True,
|
||||
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(
|
||||
content=CONFIG.ev_info.fest.content,
|
||||
suppress_embeds=True,
|
||||
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(
|
||||
content=CONFIG.ev_info.aktion.content,
|
||||
suppress_embeds=True,
|
||||
ephemeral=reply_private(interaction, CONFIG.ev_info.aktion.name),
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue