From b0d05bde33c776ad8786e96a0a8ac9d565a60f72 Mon Sep 17 00:00:00 2001 From: Phil Campeau Date: Mon, 2 Sep 2024 23:17:14 -0400 Subject: [PATCH] [1849] correction to Bond variant code --- lib/engine/game/g_1849/step/bond.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/engine/game/g_1849/step/bond.rb b/lib/engine/game/g_1849/step/bond.rb index 57393e1da7..dbee45a1a6 100644 --- a/lib/engine/game/g_1849/step/bond.rb +++ b/lib/engine/game/g_1849/step/bond.rb @@ -15,7 +15,7 @@ def actions(entity) actions = [] actions << 'payoff_loan' if can_payoff_loan?(entity) actions << 'take_loan' if can_take_loan?(entity) - actions << 'pass' if blocks? && !actions.empty? + actions << 'pass' unless actions.empty? actions end