forked from MarseyWorld/MarseyWorld
let losers know how much coins the winner won
parent
b94fabddb4
commit
cf83a996bd
|
@ -52,7 +52,7 @@ def end_lottery_session():
|
|||
+ f'Congratulations!\nOdds of winning: {chance_to_win}%'
|
||||
else:
|
||||
notification_text = f'You did not win the lottery. Better luck next time!\n' \
|
||||
+ f'Odds of winning: {chance_to_win}%\nWinner: @{winning_user.username}'
|
||||
+ f'Odds of winning: {chance_to_win}%\nWinner: @{winning_user.username} (won {active_lottery.prize} coins)'
|
||||
send_repeatable_notification(user.id, notification_text)
|
||||
user.currently_held_lottery_tickets = 0
|
||||
|
||||
|
@ -125,4 +125,4 @@ def grant_lottery_tickets_to_user(v, quantity):
|
|||
active_lottery.prize += prize_value
|
||||
active_lottery.tickets_sold += quantity
|
||||
|
||||
g.db.commit()
|
||||
g.db.commit()
|
||||
|
|
Loading…
Reference in New Issue