mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 07:04:27 +00:00
Add consumable type
This commit is contained in:
parent
ea692af4a6
commit
fd933d166a
2 changed files with 6 additions and 1 deletions
|
@ -2277,6 +2277,10 @@ namespace ArchiSteamFarm {
|
|||
return Steam.Asset.EType.SteamGems;
|
||||
default:
|
||||
|
||||
if (name.EndsWith("Consumable", StringComparison.Ordinal)) {
|
||||
return Steam.Asset.EType.Consumable;
|
||||
}
|
||||
|
||||
if (name.EndsWith("Emoticon", StringComparison.Ordinal)) {
|
||||
return Steam.Asset.EType.Emoticon;
|
||||
}
|
||||
|
|
|
@ -181,7 +181,8 @@ namespace ArchiSteamFarm.Json {
|
|||
ProfileBackground,
|
||||
TradingCard,
|
||||
SteamGems,
|
||||
SaleItem
|
||||
SaleItem,
|
||||
Consumable
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue