From 240d6c9098be7aba3e24c0286ebe75c9965c0082 Mon Sep 17 00:00:00 2001 From: Chaosvolt Date: Fri, 15 Dec 2023 19:12:31 -0600 Subject: [PATCH] feat(balance): cap axle install penalty at 10, like engine penalty (#3916) --- src/veh_interact.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/veh_interact.cpp b/src/veh_interact.cpp index e4bdb2d6eabe..e1172f2484e9 100644 --- a/src/veh_interact.cpp +++ b/src/veh_interact.cpp @@ -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 ); } }