This commit is contained in:
JustArchi 2017-08-12 20:17:00 +02:00
parent 94160bdc42
commit 7fe0b4499b

View file

@ -3959,13 +3959,10 @@ namespace ArchiSteamFarm {
switch (singleMode.ToUpper()) {
case "A":
case "ALL":
transferTypes.Add(Steam.Item.EType.TradingCard);
transferTypes.Add(Steam.Item.EType.FoilTradingCard);
transferTypes.Add(Steam.Item.EType.BoosterPack);
transferTypes.Add(Steam.Item.EType.Emoticon);
transferTypes.Add(Steam.Item.EType.ProfileBackground);
transferTypes.Add(Steam.Item.EType.Unknown);
transferTypes.Add(Steam.Item.EType.SteamGems);
foreach (Steam.Item.EType type in Enum.GetValues(typeof(Steam.Item.EType))) {
transferTypes.Add(type);
}
break;
case "BG":
case "BACKGROUND":