summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2021-06-19 21:50:38 +0200
committerTor Andersson <tor@ccxvii.net>2022-11-16 19:12:55 +0100
commit89ac1f61defbf542b97d16fd1eb3232392e3b505 (patch)
treefa485becf1a2ff292dcf58812fd01d965848fb1d
parent7fb65c1a16c61711a515549394b9e5f8dec93919 (diff)
downloadrichard-iii-89ac1f61defbf542b97d16fd1eb3232392e3b505.tar.gz
Small fixes to block games.
-rw-r--r--rules.js1
-rw-r--r--ui.js3
2 files changed, 3 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 403ca04..0adffaa 100644
--- a/rules.js
+++ b/rules.js
@@ -872,6 +872,7 @@ function can_block_muster_via(who, from, next, muster) {
return true;
}
}
+ return false;
}
function can_block_muster(who, muster) {
diff --git a/ui.js b/ui.js
index ea170cb..779cbf0 100644
--- a/ui.js
+++ b/ui.js
@@ -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) {