diff --git a/src/services/inventoryService.ts b/src/services/inventoryService.ts index aac5a034..8e3a9d7a 100644 --- a/src/services/inventoryService.ts +++ b/src/services/inventoryService.ts @@ -93,6 +93,10 @@ export const updateSlots = async (accountId: string, slotName: SlotNames, slotAm }; export const updateCurrency = async (price: number, usePremium: boolean, accountId: string) => { + if (config.infiniteResources) { + return {}; + } + const inventory = await getInventory(accountId); if (usePremium) {