summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ui.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui.js b/ui.js
index f590fde..6c99613 100644
--- a/ui.js
+++ b/ui.js
@@ -103,7 +103,8 @@ function block_owner(who) { return BLOCKS[who].owner; }
function on_focus_map_block(evt) {
let info = BLOCKS[evt.target.block];
- if (info.owner == player || info.owner == ASSASSINS) {
+ let where = game.location[evt.target.block];
+ if ((info.owner == player || info.owner == ASSASSINS) && where != S_POOL && where != F_POOL) {
let text = info.name + " ";
if (info.move)
text += info.move + "-";