@cfvdb/core
Advanced tools
Comparing version 0.0.9 to 0.0.10
@@ -41,3 +41,9 @@ | ||
possibleCards.forEach(card => { | ||
for (let i = 0; i < card.count; i ++) { | ||
let tempCount = card.count; | ||
if (card.starter) { | ||
tempCount --; | ||
} | ||
for (let i = 0; i < tempCount; i ++) { | ||
possibleCardsIncludingDuplicates.push(card.data); | ||
@@ -44,0 +50,0 @@ } |
{ | ||
"name": "@cfvdb/core", | ||
"version": "0.0.9", | ||
"version": "0.0.10", | ||
"description": "Core functions for CFVDB", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
13689
308