diff options
-rw-r--r-- | rules.js | 1 | ||||
-rw-r--r-- | rules.ts | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -365,6 +365,7 @@ function game_view(state, current) { view.bag_of_glory = game.bag_of_glory; if (game.state === 'game_over') { view.prompt = game.victory; + view.bag_of_glory = game.bag_of_glory; } else if (current !== game.active && !game.active.includes(current)) { @@ -555,6 +555,7 @@ function game_view(state: Game, current: Player | 'Observer') { if (game.state === 'game_over') { view.prompt = game.victory; + view.bag_of_glory = game.bag_of_glory; } else if ( current !== game.active && !game.active.includes(current as Player) |