Loading

Paste #pnhvryzz0

  1.     if (_next_competitor_start == 0) {
  2.         _next_competitor_start = max(1, AI::GetStartNextTime() * DAY_TICKS);
  3.     }
  4.  
  5.     if (--_next_competitor_start == 0) {
  6.         do {
  7.             if (AI::CanStartNew() && _game_mode != GM_MENU) {
  8.                 MaybeStartNewCompany();
  9.             }
  10.         } while (AI::GetStartNextTime() == 0);
  11.     }

Comments