Skip to content

Commit

Permalink
Merge pull request #11535 from tobymao/1844-emr-sbb-train
Browse files Browse the repository at this point in the history
[1844] Allow EMR cross buying from sbb
  • Loading branch information
crericha authored Feb 18, 2025
2 parents 3891a15 + 2e22dbc commit 70ba20c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/engine/game/g_1848/step/buy_train.rb
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def ebuy_president_can_contribute?(_corporation)
false
end

def president_may_contribute?
def president_may_contribute?(_entity, _shell = nil)
false
end

Expand Down
4 changes: 3 additions & 1 deletion lib/engine/step/train.rb
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,9 @@ def buyable_trains(entity)

other_trains = [] if entity.cash.zero? && @game.class::EBUY_FROM_OTHERS == :never

other_trains.reject! { |t| entity.cash < t.price && must_buy_at_face_value?(t, entity) }
unless president_may_contribute?(entity)
other_trains.reject! { |t| entity.cash < t.price && must_buy_at_face_value?(t, entity) }
end

depot_trains + other_trains
end
Expand Down

0 comments on commit 70ba20c

Please sign in to comment.