fix stats
This commit is contained in:
parent
10c44d266d
commit
c55b4b81ed
1 changed files with 3 additions and 2 deletions
|
@ -108,7 +108,7 @@ def do_play_card(bot, player, result_id):
|
||||||
text=__("{name} won!", multi=game.translate)
|
text=__("{name} won!", multi=game.translate)
|
||||||
.format(name=user.first_name))
|
.format(name=user.first_name))
|
||||||
send_async(bot, chat.id,
|
send_async(bot, chat.id,
|
||||||
text=__("Game ended! Flawless Victory!", multi=game.translate))
|
text=__("Game ended! Flawless Victory!"))
|
||||||
|
|
||||||
if us.stats:
|
if us.stats:
|
||||||
# us.games_played += 1
|
# us.games_played += 1
|
||||||
|
@ -122,6 +122,7 @@ def do_play_card(bot, player, result_id):
|
||||||
game.players_won += 1
|
game.players_won += 1
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
if game.mode != 'one':
|
||||||
gm.leave_game(user, chat)
|
gm.leave_game(user, chat)
|
||||||
except NotEnoughPlayersError:
|
except NotEnoughPlayersError:
|
||||||
send_async(bot, chat.id,
|
send_async(bot, chat.id,
|
||||||
|
|
Loading…
Reference in a new issue