diff options
author | teisuru <31881306+teisuru@users.noreply.github.com> | 2023-06-06 20:02:14 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-10 18:16:55 +0100 |
commit | 8218d1f24c577404186ba61cd161b0729eef51d2 (patch) | |
tree | b7b650ca0c449235d254eb5e312c95b733ff328a /rules.js | |
parent | b543883cb91c6fa64eca99bb8fba59bd3cbe1027 (diff) | |
download | plantagenet-8218d1f24c577404186ba61cd161b0729eef51d2.tar.gz |
Always friendly locale for levy tests
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1092,7 +1092,7 @@ function is_friendly_locale(loc) { return true } } - return false + return true // TESTING PURPOSES NEED TO CHANGE TO FALSE } function can_add_transport(who, what) { @@ -1923,11 +1923,9 @@ states.levy_muster = { let done = true for (let lord = first_friendly_lord; lord <= last_friendly_lord; ++lord) { - if (is_lord_at_friendly_locale(lord) && !get_lord_moved(lord)) { - /*if (!no_muster_of_or_by_lord(lord)) { + if (is_lord_at_friendly_locale(lord) && !get_lord_moved(lord) ) { gen_action_lord(lord) done = false - }*/ } } if (done) { |