Add showsInInventory() check to the ContainerItemModel

pull/310/head
Andrei Kortunov 7 years ago
parent ad27e0f945
commit ea3729790f

@ -142,6 +142,9 @@ void ContainerItemModel::update()
for (MWWorld::ContainerStoreIterator it = store.begin(); it != store.end(); ++it)
{
if (!(*it).getClass().showsInInventory(*it))
continue;
std::vector<ItemStack>::iterator itemStack = mItems.begin();
for (; itemStack != mItems.end(); ++itemStack)
{

Loading…
Cancel
Save