diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-10-10 12:57:15 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-10 18:16:55 +0100 |
commit | 9ae554711e803094ed6f43ffe940737c1eaf1558 (patch) | |
tree | b62444e389391c3363bb834ed1287cead557dfd2 | |
parent | 043a562ce9e965aa09f1f7cd3e7aae456d9e62bb (diff) | |
download | plantagenet-9ae554711e803094ed6f43ffe940737c1eaf1558.tar.gz |
skip setup for scenarios that don't use it
-rw-r--r-- | rules.js | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1912,6 +1912,8 @@ exports.setup = function (seed, scenario, options) { update_aliases() + goto_setup_lords() + return game } @@ -2128,7 +2130,12 @@ function setup_ItoIII() { setup_vassals() } -// setup will be used in some scenarios + +function goto_setup_lords() { + // setup will be used in some scenarios + end_setup_lords() + end_setup_lords() +} states.setup_lords = { inactive: "Set up Lords", |