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(
|
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),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue