diff --git a/lib/engine/game/g_system18/game.rb b/lib/engine/game/g_system18/game.rb index 4f817d9e44..38088d6bc9 100644 --- a/lib/engine/game/g_system18/game.rb +++ b/lib/engine/game/g_system18/game.rb @@ -624,13 +624,13 @@ def revenue_str(route) end def extra_revenue(entity, routes) - return unless respond_to?("map_#{map_name}_extra_revenue") + return super unless respond_to?("map_#{map_name}_extra_revenue") send("map_#{map_name}_extra_revenue", entity, routes) end def submit_revenue_str(routes, show_subsidy) - return unless respond_to?("map_#{map_name}_submit_revenue_str") + return super unless respond_to?("map_#{map_name}_submit_revenue_str") send("map_#{map_name}_submit_revenue_str", routes, show_subsidy) end @@ -670,7 +670,7 @@ def removable_icon_action_str end def status_str(corporation) - return unless respond_to?("map_#{map_name}_status_str") + return super unless respond_to?("map_#{map_name}_status_str") send("map_#{map_name}_status_str", corporation) end @@ -688,7 +688,7 @@ def pre_lay_tile_action(action, entity, tile_lay) end def place_home_token(corporation) - return unless respond_to?("map_#{map_name}_place_home_token") + return super unless respond_to?("map_#{map_name}_place_home_token") send("map_#{map_name}_place_home_token", corporation) end