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

Guild Audit command flushed out

This commit is contained in:
Ean Milligan (Bastion)
2022-07-05 23:49:10 -04:00
parent 36405421f6
commit 5b7cb60382
2 changed files with 76 additions and 4 deletions

View File

@ -545,8 +545,8 @@ export const roll = (rollStr: string, maximiseRoll: boolean, nominalRoll: boolea
if (loopCount > config.limits.maxLoops) {
throw new Error('MaxLoopsExceeded');
}
// Compound the exploding rolls, including the exploding flag and
// Compound the exploding rolls, including the exploding flag and
if (rollSet[i].exploding) {
rollSet[i - 1].roll = rollSet[i - 1].roll + rollSet[i].roll;
rollSet[i - 1].exploding = true;