summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2022-02-20 12:33:38 +0100
committerTor Andersson <tor@ccxvii.net>2022-11-16 19:19:39 +0100
commita88466a2fb6b73571240c79fb3a26d8310b9593c (patch)
treecd3a13bc5a623873f798bc3aa363609c25ee4499
parenteafcc44779d41a8e30a59909b09f45e43dbc017b (diff)
downloadcrusader-rex-a88466a2fb6b73571240c79fb3a26d8310b9593c.tar.gz
Log which options are in effect.
-rw-r--r--rules.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 9e52ad4..41d1551 100644
--- a/rules.js
+++ b/rules.js
@@ -3768,8 +3768,11 @@ exports.setup = function (seed, scenario, options) {
where: null,
undo: [],
}
- if (options && options.iron_bridge)
+ if (options && options.iron_bridge) {
game.iron_bridge = 1;
+ log("Iron Bridge:\nThe road between Antioch and Harim has a move limit of 3.");
+ log("");
+ }
setup_game();
return game;
}