diff --git a/lib/engine/game/g_18_royal_gorge/game.rb b/lib/engine/game/g_18_royal_gorge/game.rb index 33f99b558f..f7fb7a4c5a 100644 --- a/lib/engine/game/g_18_royal_gorge/game.rb +++ b/lib/engine/game/g_18_royal_gorge/game.rb @@ -566,7 +566,11 @@ def or_set_finished @gold_shipped = 0 update_gold_corp_cash! - depot.export! unless @depot.upcoming.empty? + if @depot.upcoming.first&.name == '2+' + depot.export_all!('2+') + elsif !@depot.upcoming.empty? + depot.export! + end end def handle_metal_payout(entity)