diff --git a/data/language/english_uk.txt b/data/language/english_uk.txt index 2229b67581..586d2389da 100644 --- a/data/language/english_uk.txt +++ b/data/language/english_uk.txt @@ -3470,7 +3470,7 @@ STR_5133 :{SMALLFONT}{BLACK}Adjust smaller area of land rights STR_5134 :{SMALLFONT}{BLACK}Adjust larger area of land rights STR_5135 :{SMALLFONT}{BLACK}Buy land rights and construction rights STR_5136 :Land rights -STR_5137 :Allow lift hill speeds up to {VELOCITY} +STR_5137 :Allow lift hill and launch speeds{NEWLINE}up to {VELOCITY} STR_5138 :{SMALLFONT}{WINDOW_COLOUR_2}{STRINGID} STR_5139 :{WHITE}{STRINGID} STR_5140 :Disable brakes failure diff --git a/src/windows/ride.c b/src/windows/ride.c index 4e3da25673..eda5103b47 100644 --- a/src/windows/ride.c +++ b/src/windows/ride.c @@ -2700,7 +2700,10 @@ static void window_ride_mode_tweak_increase(rct_window *w) { rct_ride *ride = GET_RIDE(w->number); uint8 value = ride->var_0D0; - if (value < RCT2_GLOBAL(RCT2_ADDRESS_RIDE_FLAGS + (ride->type * 8) + 5, uint8)) + //fast_lift_hill is the cheat that allows maxing out many limits on the Operating tab. + uint8 max_value = gConfigCheat.fast_lift_hill ? 255 : RCT2_GLOBAL(RCT2_ADDRESS_RIDE_FLAGS + (ride->type * 8) + 5, uint8); + + if (value < max_value) value += ride->mode == RIDE_MODE_BUMPERCAR ? 10 : 1; window_ride_mode_tweak_set(w, value);