@rpg-engine/long-bow 0.2.88 → 0.2.89

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpg-engine/long-bow",
3
- "version": "0.2.88",
3
+ "version": "0.2.89",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -131,9 +131,6 @@ export const EquipmentSet: React.FC<IEquipmentSetProps> = ({
131
131
  }}
132
132
  checkIfItemCanBeMoved={checkIfItemCanBeMoved}
133
133
  onPlaceDrop={(item, slotIndex, itemContainerType) => {
134
- if (!item) {
135
- return;
136
- }
137
134
  if (onItemPlaceDrop)
138
135
  onItemPlaceDrop(item, slotIndex, itemContainerType);
139
136
  }}