Remove alert for inventory item click in index.html

This commit is contained in:
Z. Cliffe Schreuders
2025-03-27 12:20:55 +00:00
parent 97ba6d529e
commit 4d2e7c473a

View File

@@ -1961,7 +1961,6 @@
if (pointer.y > inventoryBounds.y && pointer.y < inventoryBounds.y + inventoryBounds.height &&
pointer.x > inventoryBounds.x && pointer.x < inventoryBounds.x + inventoryBounds.width) {
alert('INVENTORY ITEM CLICKED');
// Find clicked inventory item
const clickedItem = inventory.items.find(item => {
if (!item) return false;