mirror of
https://code.lenaisten.de/Lenaisten/lenaverse-bot.git
synced 2024-11-22 06:53:00 +00:00
"join" -> "beitreten"
This commit is contained in:
parent
4a7851c50d
commit
7c4dc07273
2 changed files with 8 additions and 8 deletions
|
@ -64,7 +64,7 @@ class ClubInfo(BaseModel):
|
|||
info: InfoCommand
|
||||
vorstand: InfoCommand
|
||||
linktree: InfoCommand
|
||||
join: FileCommand
|
||||
beitreten: FileCommand
|
||||
fest: InfoCommand
|
||||
aktion: InfoCommand
|
||||
|
||||
|
|
|
@ -63,20 +63,20 @@ async def linktree(interaction: discord.Interaction) -> None:
|
|||
|
||||
|
||||
@ev_command(
|
||||
name=CONFIG.ev_info.join.name,
|
||||
description=CONFIG.ev_info.join.description,
|
||||
name=CONFIG.ev_info.beitreten.name,
|
||||
description=CONFIG.ev_info.beitreten.description,
|
||||
)
|
||||
async def join(interaction: discord.Interaction) -> None:
|
||||
async def beitreten(interaction: discord.Interaction) -> None:
|
||||
"""
|
||||
Wie und warum dem Verein beitreten
|
||||
"""
|
||||
|
||||
if (file := await CONFIG.ev_info.join.as_discord_file) is not None:
|
||||
if (file := await CONFIG.ev_info.beitreten.as_discord_file) is not None:
|
||||
await interaction.response.send_message(
|
||||
content=CONFIG.ev_info.join.content,
|
||||
content=CONFIG.ev_info.beitreten.content,
|
||||
file=file,
|
||||
suppress_embeds=True,
|
||||
ephemeral=reply_private(interaction, CONFIG.ev_info.join.name),
|
||||
ephemeral=reply_private(interaction, CONFIG.ev_info.beitreten.name),
|
||||
)
|
||||
|
||||
else:
|
||||
|
@ -122,7 +122,7 @@ COMMANDS = [
|
|||
info,
|
||||
vorstand,
|
||||
linktree,
|
||||
join,
|
||||
beitreten,
|
||||
fest,
|
||||
aktion,
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue