fix roulette getting stuck

pull/150/head
Aevann 2023-05-16 03:11:03 +03:00
parent 814bf0a5f3
commit e62ea466c3
1 changed files with 2 additions and 1 deletions

View File

@ -106,4 +106,5 @@ def distribute_wager_badges(user, wager, won):
badges_earned.add(159)
for badge in badges_earned:
badge_grant(user, badge)
try: badge_grant(user, badge)
except: continue