mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 19:13:07 +01:00
Remove maze people limit override
This commit is contained in:
@@ -3760,10 +3760,6 @@ static bool ride_is_valid_operation_option(rct_ride *ride, uint8 value)
|
||||
{
|
||||
uint8 minValue = RideProperties[ride->type].min_value;
|
||||
uint8 maxValue = RideProperties[ride->type].max_value;
|
||||
if (ride->mode == RIDE_MODE_MAZE) {
|
||||
// Allow 64 people in mazes under non-cheat settings. The old maximum of 16 was too little for even moderately big mazes.
|
||||
maxValue = 64;
|
||||
}
|
||||
if (gCheatsFastLiftHill) {
|
||||
minValue = 0;
|
||||
maxValue = 255;
|
||||
|
||||
@@ -3168,10 +3168,6 @@ static void window_ride_mode_tweak_decrease(rct_window *w)
|
||||
|
||||
uint8 maxValue = RideProperties[ride->type].max_value;
|
||||
uint8 minValue = gCheatsFastLiftHill ? 0 : RideProperties[ride->type].min_value;
|
||||
if (ride->mode == RIDE_MODE_MAZE) {
|
||||
// Allow 64 people in mazes under non-cheat settings. The old maximum of 16 was too little for even moderately big mazes.
|
||||
maxValue = 64;
|
||||
}
|
||||
if (gCheatsFastLiftHill) {
|
||||
maxValue = 255;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user