refactor Content

This commit is contained in:
MihailRis
2024-06-25 22:37:53 +03:00
parent f3c5afa1ab
commit ee9f1639e9
25 changed files with 180 additions and 209 deletions
+2 -2
View File
@@ -102,9 +102,9 @@ std::shared_ptr<InventoryView> Hud::createContentAccess() {
auto indices = content->getIndices();
auto inventory = player->getInventory();
int itemsCount = indices->countItemDefs();
size_t itemsCount = indices->items.count();
auto accessInventory = std::make_shared<Inventory>(0, itemsCount);
for (int id = 1; id < itemsCount; id++) {
for (size_t id = 1; id < itemsCount; id++) {
accessInventory->getSlot(id-1).set(ItemStack(id, 1));
}