summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-11-01 13:55:05 +0100
committerTor Andersson <tor@ccxvii.net>2023-11-01 14:06:13 +0100
commit6be0cdf2e76fb7d779d832c2dc33bb7f1a95d57a (patch)
tree276f5c5e628bdc5b4da85e2164f57dc686c69e9d /rules.js
parent76f1e151ec5d5f9590828fbc1cc53d202e8473f5 (diff)
downloadalgeria-6be0cdf2e76fb7d779d832c2dc33bb7f1a95d57a.tar.gz
Remove n-dash in inactive prompt.
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 447b7e1..7ad2f44 100644
--- a/rules.js
+++ b/rules.js
@@ -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)