@rpg-engine/long-bow 0.8.5 → 0.8.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27790,8 +27790,7 @@ var generateContextMenu = function generateContextMenu(item, itemContainerType,
27790
27790
  text: 'Withdraw'
27791
27791
  }];
27792
27792
  }
27793
- console.log(item.type === ItemType.Container);
27794
- if (item.type === ItemType.Container) {
27793
+ if (item.type && item.type === ItemType.Container) {
27795
27794
  var existInContextAction = contextActionMenu.some(function (item) {
27796
27795
  return item.text === DepotSocketEvents.OpenContainer || item.id === ItemSocketEvents.ContainerOpen || item.text === 'Open';
27797
27796
  });