Fixed definition update not being called

Should update definition when inventory is requested and definition is not loaded
This commit is contained in:
Nemirtingas 2019-09-01 21:32:48 +02:00
parent da75aa3ae7
commit 86b178f55b
1 changed files with 3 additions and 2 deletions

View File

@ -847,9 +847,9 @@ bool SubmitUpdateProperties( SteamInventoryUpdateHandle_t handle, SteamInventory
void RunCallbacks()
{
if (call_definition_update) {
read_items_db();
if (call_definition_update && !definition_update_called) {
definition_update_called = true;
read_items_db();
SteamInventoryDefinitionUpdate_t data = {};
callbacks->addCBResult(data.k_iCallback, &data, sizeof(data));
@ -860,6 +860,7 @@ void RunCallbacks()
read_inventory_db();
inventory_loaded = true;
call_definition_update = true;
call_inventory_update = false;
}