File diff r24350:2b062295a732 → r24351:bfcbae8b4f89
src/vehicle.cpp
Show inline comments
 
@@ -170,6 +170,7 @@ void VehicleServiceInDepot(Vehicle *v)
 
		v->reliability = v->GetEngine()->reliability;
 
		/* Prevent vehicles from breaking down directly after exiting the depot. */
 
		v->breakdown_chance /= 4;
 
		if (_settings_game.difficulty.vehicle_breakdowns == 1) v->breakdown_chance = 0; // on reduced breakdown
 
		v = v->Next();
 
	} while (v != nullptr && v->HasEngineType());
 
}