Loading

Paste #pvhz8qahw

  1.         if (!AIRoad.AreRoadTilesConnected(prev_tile, new_tile)) {
  2.             cost += self._cost_no_existing_road * 2;
  3.             if (AIRoad.IsRoadTile(new_tile) || AIBridge.IsBridgeTile(new_tile) || AITunnel.IsTunnelTile(new_tile) ||
  4.                     (AIRoad.IsRoadStationTile(new_tile) || AIRoad.IsRoadDepotTile(new_tile)) && AITile.GetOwner(new_tile) == AICompany.ResolveCompanyID(AICompany.COMPANY_SELF)) {
  5.                 cost -= self._cost_no_existing_road;
  6.             }
  7.         }

Comments