diff options
-rw-r--r-- | rules.js | 1 | ||||
-rw-r--r-- | ui.js | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -872,6 +872,7 @@ function can_block_muster_via(who, from, next, muster) { return true; } } + return false; } function can_block_muster(who, muster) { @@ -132,7 +132,8 @@ function on_blur_map_block(evt) { function on_click_map_block(evt) { let b = evt.target.block; - send_action('block', b); + if (!game.battle) + send_action('block', b); } function is_battle_reserve(who, list) { |