Remove max queue length limit

This commit is contained in:
Hielke Morsink 2022-04-02 23:07:35 +02:00
parent b66d15659f
commit 7db9aeb709
No known key found for this signature in database
GPG Key ID: FE0B343DF883E7F2
2 changed files with 0 additions and 8 deletions

View File

@ -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)

View File

@ -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