1
1
mirror of https://github.com/Burn-E99/TheArtificer.git synced 2026-01-06 20:37:54 -05:00

remove erroneous console.log

This commit is contained in:
Ean Milligan
2025-04-29 04:10:52 -04:00
parent 0250135c5f
commit 57bde22e1a

View File

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