diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-11-01 13:55:05 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-11-01 14:06:13 +0100 |
commit | 6be0cdf2e76fb7d779d832c2dc33bb7f1a95d57a (patch) | |
tree | 276f5c5e628bdc5b4da85e2164f57dc686c69e9d | |
parent | 76f1e151ec5d5f9590828fbc1cc53d202e8473f5 (diff) | |
download | algeria-6be0cdf2e76fb7d779d832c2dc33bb7f1a95d57a.tar.gz |
Remove n-dash in inactive prompt.
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1110,7 +1110,7 @@ exports.view = function(state, player) { view.prompt = game.victory } else if (player !== game.active) { let inactive = states[game.state].inactive || game.state - view.prompt = `Waiting for ${game.active} \u2014 ${inactive}...` + view.prompt = `Waiting for ${game.active} ${inactive}.` } else { view.actions = {} if (game.undo && game.undo.length > 0) |