remove erroneous console.log

This commit is contained in:
Ean Milligan 2025-04-29 04:10:52 -04:00
parent 0250135c5f
commit 57bde22e1a
1 changed files with 0 additions and 1 deletions

View File

@ -167,7 +167,6 @@ export const roll = (rollStr: string, modifiers: RollModifiers): RollSet[] => {
const percentCount = rawDS.match(/%/g)?.length ?? 1; const percentCount = rawDS.match(/%/g)?.length ?? 1;
rollConf.dPercent.sizeAdjustment = Math.pow(10, percentCount - 1); rollConf.dPercent.sizeAdjustment = Math.pow(10, percentCount - 1);
rollConf.dPercent.critVal = Math.pow(10, percentCount) - rollConf.dPercent.sizeAdjustment; rollConf.dPercent.critVal = Math.pow(10, percentCount) - rollConf.dPercent.sizeAdjustment;
console.log(percentCount, rollConf.dPercent);
} else { } else {
rollConf.dieSize = parseInt(rawDS); rollConf.dieSize = parseInt(rawDS);
} }