From b0a56f3afcdb882255317e5c70e311551247a078 Mon Sep 17 00:00:00 2001 From: Senryoku Date: Sat, 7 Dec 2024 10:16:44 +0100 Subject: [PATCH] Micro cleanup --- src/BoosterFactory.ts | 1 - src/LandSlot.ts | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/BoosterFactory.ts b/src/BoosterFactory.ts index d61198e26..0010503b1 100644 --- a/src/BoosterFactory.ts +++ b/src/BoosterFactory.ts @@ -2763,7 +2763,6 @@ class PIOBoosterFactory extends BoosterFactory { options.bonusSheet ?? (Math.floor((new Date().getTime() - 1733785200000) / (1000 * 60 * 60 * 24 * 7 * 2)) + 1) % PIOBoosterFactory.BonusLists.length; - console.log("currentSheet", currentSheet); for (const c of PIOBoosterFactory.BonusLists[currentSheet]) { const rarity = getCard(c).rarity; if (!this.bonus[rarity]) this.bonus[rarity] = new CardPool(); diff --git a/src/LandSlot.ts b/src/LandSlot.ts index 94746f45b..d6df882a5 100644 --- a/src/LandSlot.ts +++ b/src/LandSlot.ts @@ -1,7 +1,7 @@ "use strict"; import { CardID, CardPool } from "./CardTypes.js"; -import { getUnique, getCard, BoosterCardsBySet } from "./Cards.js"; +import { getUnique, getCard } from "./Cards.js"; import { random, getRandomMapKey, getRandom } from "./utils.js"; import BasicLandIDs from "./data/BasicLandIDs.json" with { type: "json" };