Compare commits

..

No commits in common. "a8062f20ae3698f536132b554919b19cbf7a1e2a" and "005a366883c4d7ce050904845ab1b97909fb6065" have entirely different histories.

3 changed files with 5 additions and 5 deletions

BIN
cards.db

Binary file not shown.

View file

@ -1,6 +1,6 @@
{ {
"name": "card-drop", "name": "card-drop",
"version": "0.1.6", "version": "0.1.5",
"main": "./dist/bot.js", "main": "./dist/bot.js",
"typings": "./dist", "typings": "./dist",
"scripts": { "scripts": {

View file

@ -59,7 +59,7 @@ export default class CardSetupFunction {
const cardDirLegendary = legendaryExists ? readdirSync(path.join(process.cwd(), 'cards', series.Path, 'LEGENDARY')) : []; const cardDirLegendary = legendaryExists ? readdirSync(path.join(process.cwd(), 'cards', series.Path, 'LEGENDARY')) : [];
const cardDirSilver = silverExists ? readdirSync(path.join(process.cwd(), 'cards', series.Path, 'SILVER')) : []; const cardDirSilver = silverExists ? readdirSync(path.join(process.cwd(), 'cards', series.Path, 'SILVER')) : [];
for (let file of cardDirBronze.filter(x => !x.startsWith('.') && (x.endsWith('.png') || x.endsWith('.jpg') || x.endsWith('.gif')))) { for (let file of cardDirBronze) {
const filePart = file.split('.'); const filePart = file.split('.');
const cardId = filePart[0]; const cardId = filePart[0];
@ -70,7 +70,7 @@ export default class CardSetupFunction {
cardsToSave.push(card); cardsToSave.push(card);
} }
for (let file of cardDirGold.filter(x => !x.startsWith('.') && (x.endsWith('.png') || x.endsWith('.jpg') || x.endsWith('.gif')))) { for (let file of cardDirGold) {
const filePart = file.split('.'); const filePart = file.split('.');
const cardId = filePart[0]; const cardId = filePart[0];
@ -81,7 +81,7 @@ export default class CardSetupFunction {
cardsToSave.push(card); cardsToSave.push(card);
} }
for (let file of cardDirLegendary.filter(x => !x.startsWith('.') && (x.endsWith('.png') || x.endsWith('.jpg') || x.endsWith('.gif')))) { for (let file of cardDirLegendary) {
const filePart = file.split('.'); const filePart = file.split('.');
const cardId = filePart[0]; const cardId = filePart[0];
@ -92,7 +92,7 @@ export default class CardSetupFunction {
cardsToSave.push(card); cardsToSave.push(card);
} }
for (let file of cardDirSilver.filter(x => !x.startsWith('.') && (x.endsWith('.png') || x.endsWith('.jpg') || x.endsWith('.gif')))) { for (let file of cardDirSilver) {
const filePart = file.split('.'); const filePart = file.split('.');
const cardId = filePart[0]; const cardId = filePart[0];