mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2025-12-05 21:15:39 -05:00
Fixed inventory regression
This commit is contained in:
2
KoalaBox
2
KoalaBox
Submodule KoalaBox updated: 57366d39a3...87973f64ed
@@ -11,8 +11,7 @@
|
||||
},
|
||||
"$version": {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"default": 4,
|
||||
"const": 4,
|
||||
"description": "A technical field reserved for tools like GUI config editors. Do not modify this value."
|
||||
},
|
||||
"logging": {
|
||||
|
||||
@@ -80,7 +80,6 @@ namespace smoke_api {
|
||||
}
|
||||
|
||||
LOG_INFO("{} v{} | Built at '{}'", PROJECT_NAME, PROJECT_VERSION, __TIMESTAMP__);
|
||||
|
||||
LOG_DEBUG("Parsed config:\n{}", nlohmann::ordered_json(config::instance).dump(2));
|
||||
|
||||
const auto exe_path = kb::win::get_module_path(nullptr);
|
||||
|
||||
@@ -77,6 +77,21 @@ namespace {
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
STEAM_INVENTORY,
|
||||
interface_data{
|
||||
.fallback_version = "STEAMINVENTORY_INTERFACE_V003",
|
||||
.entry_map = {
|
||||
ENTRY(ISteamInventory, GetResultStatus),
|
||||
ENTRY(ISteamInventory, GetResultItems),
|
||||
ENTRY(ISteamInventory, CheckResultSteamID),
|
||||
ENTRY(ISteamInventory, GetAllItems),
|
||||
ENTRY(ISteamInventory, GetItemsByID),
|
||||
ENTRY(ISteamInventory, SerializeResult),
|
||||
ENTRY(ISteamInventory, GetItemDefinitionIDs),
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
STEAM_USER,
|
||||
interface_data{
|
||||
|
||||
Reference in New Issue
Block a user