diff options
-rw-r--r-- | play.html | 4 | ||||
-rw-r--r-- | play.js | 2 | ||||
-rw-r--r-- | rules.js | 2 |
3 files changed, 2 insertions, 6 deletions
@@ -138,10 +138,6 @@ body.Teutons #plan_actions .russian { display: none } /* BATTLE GRID WITH LORD MATS */ -#battle_panel { - width: 1275px; -} - #battle_grid { display: grid; grid-template-columns: auto auto auto; @@ -1704,7 +1704,7 @@ function update_battle() { } function is_lord_in_battle(lord) { - if (view.battle) { + if (view.battle && view.battle.array) { for (let i = 0; i < 12; ++i) if (view.battle.array[i] === lord) return true @@ -9488,8 +9488,8 @@ states.battle_remove = { disband_lord(lord, true) remove_legate_if_endangered(game.battle.where) lift_sieges() + goto_battle_remove() } - goto_battle_remove() }, } |