Skip to content

Commit

Permalink
Merge pull request #11190 from philcampeau/1849-bonds-fix
Browse files Browse the repository at this point in the history
[1849] correction to Bond variant code
  • Loading branch information
crericha authored Sep 6, 2024
2 parents 1682836 + b0d05bd commit 6107d98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/engine/game/g_1849/step/bond.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6107d98

Please sign in to comment.