Skip to content

Commit

Permalink
[1849] correction to Bond variant code
Browse files Browse the repository at this point in the history
  • Loading branch information
philcampeau committed Sep 3, 2024
1 parent dc8c072 commit b0d05bd
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 b0d05bd

Please sign in to comment.