@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.
@@ -27797,8 +27797,7 @@ var generateContextMenu = function generateContextMenu(item, itemContainerType,
27797
27797
  text: 'Withdraw'
27798
27798
  }];
27799
27799
  }
27800
- console.log(item.type === shared.ItemType.Container);
27801
- if (item.type === shared.ItemType.Container) {
27800
+ if (item.type && item.type === shared.ItemType.Container) {
27802
27801
  var existInContextAction = contextActionMenu.some(function (item) {
27803
27802
  return item.text === shared.DepotSocketEvents.OpenContainer || item.id === shared.ItemSocketEvents.ContainerOpen || item.text === 'Open';
27804
27803
  });