From a36de0bb1b0ca6b9592838249a3f62154981b743 Mon Sep 17 00:00:00 2001 From: Haxxer Date: Mon, 1 Jan 2024 18:26:34 +0000 Subject: [PATCH] Fixes --- src/applications/auctioneer/auctioneer-store.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/applications/auctioneer/auctioneer-store.js b/src/applications/auctioneer/auctioneer-store.js index 8f89bdc..d88234d 100644 --- a/src/applications/auctioneer/auctioneer-store.js +++ b/src/applications/auctioneer/auctioneer-store.js @@ -654,15 +654,6 @@ export function createStore(auctioneer) { } if (actor && itemsToCreate.length) { - if (actor.getFlag("item-piles", "data")?.type === "vault") { - const canEveryItemFit = itemsToCreate.every(data => { - return game.itempiles.API.canItemFitInVault(data.item, actor, data.quantity); - }); - if (!canEveryItemFit) { - ui.notifications.warn("You cannot claim this item as there is no more space in your vault!"); - return; - } - } await game.itempiles.API.addItems(actor, itemsToCreate); } if (actor && (successfulAuctionCurrencies.length || failedBidCurrencies.length)) {