We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4895810 commit d17d1a2Copy full SHA for d17d1a2
GeneralsMD/Code/GameEngine/Source/GameLogic/Object/Behavior/ParkingPlaceBehavior.cpp
@@ -472,7 +472,7 @@ void ParkingPlaceBehavior::transferRunwayReservationToNextInLineForTakeoff(Objec
472
//-------------------------------------------------------------------------------------------------
473
Bool ParkingPlaceBehavior::deferUnsequencedRunwayReservationForTakeoff(UnsignedInt spaceIndex, Bool forLanding)
474
{
475
- if (spaceIndex >= m_runways.size())
+ if (m_spaces.size() > m_runways.size() && spaceIndex >= m_runways.size())
476
477
Bool& deferred = m_spaces[spaceIndex].m_deferredRunwayReservationForTakeoff;
478
if (forLanding)
0 commit comments