Always expect english responses, closes #301

Also some misc fixes while I'm at it
This commit is contained in:
JustArchi
2016-07-19 20:14:21 +02:00
parent 0c709c6ca6
commit afbfb62bed
3 changed files with 7 additions and 7 deletions

View File

@@ -205,7 +205,7 @@ namespace ArchiSteamFarm {
// Now check if it's worth for us to do the trade
await LimitInventoryRequestsAsync().ConfigureAwait(false);
HashSet<Steam.Item> inventory = await Bot.ArchiWebHandler.GetMyInventory(false).ConfigureAwait(false);
HashSet<Steam.Item> inventory = await Bot.ArchiWebHandler.GetMySteamInventory(false).ConfigureAwait(false);
if ((inventory == null) || (inventory.Count == 0)) {
return ParseTradeResult.AcceptedWithItemLose; // OK, assume that this trade is valid, we can't check our EQ
}