Hello,
 
	If I don't specific the language in the constructor, I know that I will not save asset descriptions in memory.
 
	For example, here is the data into the constructor:
 
	
		        this.ManagerOptions = {
	
	
		            steam: this.Client,
	
	
		            community: this.community,
	
	
		            //language: 'en',
	
	
		            pollInterval: 15000,
	
	
		            cancelTime: 1000*60*30, // 30 Minutes to Accept The Trade
	
	
		            pendingCancelTime: duration(10, 'minutes'),
	
	
		        };
	
	
		 
	
	However, if I am loading someone's inventory, will I still be able to get the asset description directly from the call? For instance when using getInventoryContents or loadUserInventory.
 
	Thank you!