Add "breaks" functionality to bot. #1

Merged
contrastellar merged 23 commits from gabby-dev into main 2025-10-17 17:53:55 +00:00
Showing only changes of commit 933ab384e1 - Show all commits

View File

@@ -160,7 +160,8 @@ async def ping(interaction: discord.Interaction) -> None:
delete_invalidate() delete_invalidate()
cleanup_invalidate() cleanup_invalidate()
user_id = interaction.user.id user_id = interaction.user.id
await interaction.response.send_message(f'Pong! {user_id} -- the bot is active, please message contrastellar with issues!') charname = DATABASE_CONN.return_char_name(uid=user_id)
await interaction.response.send_message(f'Pong! {charname} -- the bot is active, please message contrastellar with issues!')
return return