Skip to content

Commit

Permalink
Merge pull request #10031 from philcampeau/1822_emr_correction
Browse files Browse the repository at this point in the history
[1822] fix for full_or_turn SELL_AFTER case.
  • Loading branch information
tobymao authored Dec 28, 2023
2 parents 5eb5a09 + ac1ce11 commit 16b12e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/engine/game/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1069,7 +1069,7 @@ def check_sale_timing(entity, bundle)
when :p_any_operate
corporation.operated? || corporation.president?(entity)
when :full_or_turn
if @round.operating? && corporation.president?(entity)
if @round.operating? && corporation == @round.current_operator
corporation.operating_history.size > 1
else
corporation.operated?
Expand Down

0 comments on commit 16b12e3

Please sign in to comment.