Version 1.1 #55

Merged
waifu merged 63 commits from dev into master 2025-06-12 21:10:30 -07:00
2 changed files with 2 additions and 10 deletions
Showing only changes of commit 3de6a9ac3d - Show all commits

View file

@ -60,9 +60,6 @@ def delete_player(username: str) -> bool:
)
user = CURSOR.fetchone()
if not user:
return False # No such user
user_id = user[0]
# Delete pulls

View file

@ -157,13 +157,8 @@ def delete_account(author: str) -> BotResponse:
}
def confirm_delete(author: str) -> BotResponse:
success = delete_player(author)
if not success:
return {
'message':f'@{author} ❌ No account found to delete. Maybe its already gone?',
'attachment_urls': None
}
delete_player(author)
return {
'message':f'{author} 🧼 Your account and all your cards have been deleted. RIP your gacha history 🕊️✨',