mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-21 05:53:02 +01:00
Remove max queue length limit
This commit is contained in:
@@ -1947,12 +1947,6 @@ bool Guest::ShouldGoOnRide(Ride* ride, StationIndex entranceNum, bool atQueue, b
|
||||
if (peepAtRide)
|
||||
{
|
||||
auto& station = ride->GetStation(entranceNum);
|
||||
// Peeps won't join a queue that has 1000 peeps already in it.
|
||||
if (station.QueueLength >= MAX_RIDE_QUEUE_LENGTH)
|
||||
{
|
||||
peep_tried_to_enter_full_queue(this, ride);
|
||||
return false;
|
||||
}
|
||||
|
||||
// Rides without queues can only have one peep waiting at a time.
|
||||
if (!atQueue)
|
||||
|
||||
@@ -879,8 +879,6 @@ enum
|
||||
constexpr uint32_t CONSTRUCTION_LIFT_HILL_SELECTED = 1 << 0;
|
||||
constexpr uint32_t CONSTRUCTION_INVERTED_TRACK_SELECTED = 1 << 1;
|
||||
|
||||
constexpr uint16_t MAX_RIDE_QUEUE_LENGTH = 1000;
|
||||
|
||||
Ride* get_ride(RideId index);
|
||||
|
||||
struct RideManager
|
||||
|
||||
Reference in New Issue
Block a user