fix: purchase of multiple booster packs #671

Merged
Sainan merged 1 commits from multiple-packs into main 2024-12-30 16:39:46 -08:00

View File

@ -264,7 +264,11 @@ const handleSlotPurchase = async (
}; };
}; };
const handleBoosterPackPurchase = async (typeName: string, accountId: string): Promise<IPurchaseResponse> => { const handleBoosterPackPurchase = async (
typeName: string,
accountId: string,
quantity: number
): Promise<IPurchaseResponse> => {
const pack = ExportBoosterPacks[typeName]; const pack = ExportBoosterPacks[typeName];
if (!pack) { if (!pack) {
throw new Error(`unknown booster pack: ${typeName}`); throw new Error(`unknown booster pack: ${typeName}`);
@ -273,6 +277,7 @@ const handleBoosterPackPurchase = async (typeName: string, accountId: string): P
BoosterPackItems: "", BoosterPackItems: "",
InventoryChanges: {} InventoryChanges: {}
}; };
for (let i = 0; i != quantity; ++i) {
for (const weights of pack.rarityWeightsPerRoll) { for (const weights of pack.rarityWeightsPerRoll) {
const result = getRandomWeightedReward(pack.components, weights); const result = getRandomWeightedReward(pack.components, weights);
if (result) { if (result) {
@ -285,6 +290,7 @@ const handleBoosterPackPurchase = async (typeName: string, accountId: string): P
); );
} }
} }
}
return purchaseResponse; return purchaseResponse;
}; };
@ -300,7 +306,7 @@ const handleTypesPurchase = async (
default: default:
return await addItem(accountId, typesName, quantity); return await addItem(accountId, typesName, quantity);
case "BoosterPacks": case "BoosterPacks":
return await handleBoosterPackPurchase(typesName, accountId); return await handleBoosterPackPurchase(typesName, accountId, quantity);
case "SlotItems": case "SlotItems":
return await handleSlotPurchase(typesName, accountId); return await handleSlotPurchase(typesName, accountId);
} }