summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 3678126..67bd626 100644
--- a/rules.js
+++ b/rules.js
@@ -838,7 +838,10 @@ states.bribe = {
},
beg() {
let p = game.bribe
- log(`Asked ${player_names[p]} to waive the bribe for #${game.card}.`)
+ if (typeof game.where === 'string')
+ log(`Asked ${player_names[p]} to waive the bribe to use #${game.card} to ${game.where}.`)
+ else
+ log(`Asked ${player_names[p]} to waive the bribe to play #${game.card}.`)
game.state = 'waive'
set_active(p)
},