diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-02-20 12:33:38 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-16 19:19:39 +0100 |
commit | a88466a2fb6b73571240c79fb3a26d8310b9593c (patch) | |
tree | cd3a13bc5a623873f798bc3aa363609c25ee4499 | |
parent | eafcc44779d41a8e30a59909b09f45e43dbc017b (diff) | |
download | crusader-rex-a88466a2fb6b73571240c79fb3a26d8310b9593c.tar.gz |
Log which options are in effect.
-rw-r--r-- | rules.js | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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; } |