diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -4645,7 +4645,6 @@ function release_besieged_lords(loc) { } function lift_sieges() { -console.log("LIFT SIEGE CHECK!") for (let i = 0; i < game.pieces.sieges.length; i += 2) { let loc = game.pieces.sieges[i] if (is_enemy_stronghold(loc)) { @@ -5884,7 +5883,6 @@ function search_summer_path_pass2(path, here, end, boats, carts, gate) { return if (here === end) { - console.log(" path", path.map(wl=>data.locales[wl>>8].name).join(","), boats, carts) let out1 = game.supply.path for (let i = 0; i < path.length; ++i) { let wayloc = path[i] @@ -8951,8 +8949,6 @@ function rout_lord(lord) { // Strike left or right or defender -console.log("ROUT LORD", pos) - if (pos >= A1 && pos <= A3) { game.battle.fc = strike_left_or_right(D2, A1, A2, A3) } |