diff options
author | Joël Simoneau <simoneaujoel@gmail.com> | 2025-03-20 13:04:46 -0400 |
---|---|---|
committer | Joël Simoneau <simoneaujoel@gmail.com> | 2025-03-20 13:04:46 -0400 |
commit | 1b8fa58e831c7db6e5f9d46ce3548d7ffe03bcf5 (patch) | |
tree | 91582775288f85caadef7e38f59a47615ef040d0 | |
parent | 9cc11d54a7f0ef5b6f33b5eb14f4ad15ff8fd414 (diff) | |
download | vijayanagara-1b8fa58e831c7db6e5f9d46ce3548d7ffe03bcf5.tar.gz |
Fix inverted scores
-rw-r--r-- | play.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -989,8 +989,8 @@ function on_update() { update_player_active(NAME_BK, view.current === BK) update_player_info(NAME_DS, view.vp[0]) - update_player_info(NAME_VE, view.vp[1]) - update_player_info(NAME_BK, view.vp[2]) + update_player_info(NAME_BK, view.vp[1]) + update_player_info(NAME_VE, view.vp[2]) ui.this_card.className = make_card_class_name(view.deck[0]) if (view.deck[1] > 0) { |