From: Carl Worth Date: Fri, 6 Mar 2026 12:30:36 +0000 (-0500) Subject: Track receival of bag_remaining count when joining X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=783446a2ab1ca179b3404d0cc856556179d41d4c;p=lmno.games Track receival of bag_remaining count when joining This was recently added to what the server sends on join --- diff --git a/letterrip/letterrip.jsx b/letterrip/letterrip.jsx index 64cecd4..c5538b8 100644 --- a/letterrip/letterrip.jsx +++ b/letterrip/letterrip.jsx @@ -369,7 +369,8 @@ class Game extends React.Component { this.setState({ joined: true, tiles: tiles, - rack: tiles.map((_, i) => i) + rack: tiles.map((_, i) => i), + bag_remaining: data.remaining }); } }