Index: src/economy.cpp =================================================================== --- src/economy.cpp (revision 14691) +++ src/economy.cpp (working copy) @@ -85,8 +85,8 @@ /* Score info */ const ScoreInfo _score_info[] = { - { SCORE_VEHICLES, 120, 100 }, - { SCORE_STATIONS, 80, 100 }, + { SCORE_VEHICLES, 100, 100 }, + { SCORE_STATIONS, 50, 100 }, { SCORE_MIN_PROFIT, 10000, 100 }, { SCORE_MIN_INCOME, 50000, 50 }, { SCORE_MAX_INCOME, 100000, 100 }, @@ -161,7 +161,7 @@ FOR_ALL_VEHICLES(v) { if (v->owner != owner) continue; - if (IsCompanyBuildableVehicleType(v->type) && v->IsPrimaryVehicle()) { + if (IsCompanyBuildableVehicleType(v->type) && v->IsPrimaryVehicle() && v->profit_last_year > 0) { num++; if (v->age > 730) { /* Find the vehicle with the lowest amount of profit */ @@ -187,7 +187,7 @@ const Station* st; FOR_ALL_STATIONS(st) { - if (st->owner == owner) num += CountBits(st->facilities); + if (st->owner == owner && (st->time_since_load <= 20 || st->time_since_unload <= 20)) num += CountBits(st->facilities); } _score_part[owner][SCORE_STATIONS] = num; } Index: src/lang/english.txt =================================================================== --- src/lang/english.txt (revision 14691) +++ src/lang/english.txt (working copy) @@ -3194,9 +3194,9 @@ STR_PERFORMANCE_DETAIL_LOAN :{BLACK}Loan: STR_PERFORMANCE_DETAIL_TOTAL :{BLACK}Total: ############ End of order list -STR_PERFORMANCE_DETAIL_VEHICLES_TIP :{BLACK}Number of vehicles; this includes road vehicles, trains, ships and aircraft -STR_PERFORMANCE_DETAIL_STATIONS_TIP :{BLACK}Number of station parts. Every part of a station (e.g. train station, bus stop, airport) is counted, even if they are connected as one station -STR_PERFORMANCE_DETAIL_MIN_PROFIT_TIP :{BLACK}The profit of the vehicle with the lowest income (of all vehicles older than 2 years) +STR_PERFORMANCE_DETAIL_VEHICLES_TIP :{BLACK}Number of vehicles that turned a profit last year +STR_PERFORMANCE_DETAIL_STATIONS_TIP :{BLACK}Number of recently-serviced station parts (a "station part" is a facility of a certain type, such as a bus stop or train station) +STR_PERFORMANCE_DETAIL_MIN_PROFIT_TIP :{BLACK}The profit of the vehicle with the lowest income (only vehicles older than two years are considered) STR_PERFORMANCE_DETAIL_MIN_INCOME_TIP :{BLACK}Amount of cash made in the month with the lowest profit of the last 12 quarters STR_PERFORMANCE_DETAIL_MAX_INCOME_TIP :{BLACK}Amount of cash made in the month with the highest profit of the last 12 quarters STR_PERFORMANCE_DETAIL_DELIVERED_TIP :{BLACK}Units of cargo delivered in the last four quarters