mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 15:14:41 +00:00
Correctly detect steam deck keyboard skins (#2535)
This commit is contained in:
parent
159b0620a7
commit
1f3e861612
2 changed files with 4 additions and 1 deletions
|
@ -256,6 +256,7 @@ public sealed class Asset {
|
||||||
ChatEffect,
|
ChatEffect,
|
||||||
MiniProfileBackground,
|
MiniProfileBackground,
|
||||||
AvatarProfileFrame,
|
AvatarProfileFrame,
|
||||||
AnimatedAvatar
|
AnimatedAvatar,
|
||||||
|
KeyboardSkin
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -180,6 +180,8 @@ internal sealed class InventoryResponse : ResultResponse {
|
||||||
return Asset.EType.AvatarProfileFrame;
|
return Asset.EType.AvatarProfileFrame;
|
||||||
case "item_class_15":
|
case "item_class_15":
|
||||||
return Asset.EType.AnimatedAvatar;
|
return Asset.EType.AnimatedAvatar;
|
||||||
|
case "item_class_16":
|
||||||
|
return Asset.EType.KeyboardSkin;
|
||||||
default:
|
default:
|
||||||
ASF.ArchiLogger.LogGenericError(string.Format(CultureInfo.CurrentCulture, Strings.WarningUnknownValuePleaseReport, nameof(tag.Value), tag.Value));
|
ASF.ArchiLogger.LogGenericError(string.Format(CultureInfo.CurrentCulture, Strings.WarningUnknownValuePleaseReport, nameof(tag.Value), tag.Value));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue