Skip to content

Commit

Permalink
Micro cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Senryoku committed Dec 7, 2024
1 parent d654eee commit b0a56f3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/BoosterFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion src/LandSlot.ts
Original file line number Diff line number Diff line change
@@ -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" };

Expand Down

0 comments on commit b0a56f3

Please sign in to comment.