Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[1844] Allow EMR cross buying from sbb #11535

Merged
merged 2 commits into from
Feb 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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