summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-05-24 21:51:10 +0200
committerTor Andersson <tor@ccxvii.net>2024-05-30 21:59:25 +0200
commitf8ca38194025196483cbf0a1fcbe43383f1f27dc (patch)
tree2a1cfdd070c86f4d0b4a91b10bdf8b08a58c8d8c
parentd63fc3c9aed7d5daa28121e97d175db61c2fd7c0 (diff)
downloadfriedrich-f8ca38194025196483cbf0a1fcbe43383f1f27dc.tar.gz
tweak movement range prompt
-rw-r--r--rules.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 388497c..332336d 100644
--- a/rules.js
+++ b/rules.js
@@ -1260,7 +1260,7 @@ states.movement = {
function format_move(max) {
let n = max - game.count
if (game.major)
- return ` up to ${n} + 1 cities.`
+ return ` up to ${n} cities (${n+1} on main roads).`
return ` up to ${n} cities.`
}