Skip to content

Commit

Permalink
feat(balance): cap axle install penalty at 10, like engine penalty (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
chaosvolt authored Dec 16, 2023
1 parent b2eddc0 commit 240d6c9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/veh_interact.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,9 @@ bool veh_interact::update_part_requirements()
if( !axles.empty() && axles.count( -dd.x ) == 0 ) {
// Installing more than one steerable axle is hard
// (but adding a wheel to an existing axle isn't)
// As with engines, cap at the actual maximum skill.
dif_steering = axles.size() + 5;
dif_steering = std::min( 10, dif_steering );
}
}

Expand Down

0 comments on commit 240d6c9

Please sign in to comment.