Mark inventory as resolved when downloaded

This commit is contained in:
Casper Warden
2023-11-21 18:11:53 +00:00
parent c7ea62755b
commit da455a2fe3
3 changed files with 5 additions and 3 deletions

View File

@@ -982,6 +982,7 @@ export class GameObject implements IGameObjectData
{
// Inventory is empty
this.inventory = [];
this.resolvedInventory = true;
return;
}
@@ -1064,6 +1065,7 @@ export class GameObject implements IGameObjectData
}
}
}
this.resolvedInventory = true;
}
}