Use coups, even if they are higher than the corresponding CTN

This commit is contained in:
Johannes Loher 2021-03-13 20:58:59 +01:00
parent e1d376057c
commit eeb1aa61f4
2 changed files with 10 additions and 0 deletions

View file

@ -104,6 +104,8 @@ function evaluateDiceWithSubChecks(
if (result.result <= maximumCoupResult) {
result.success = true;
result.count = result.checkTargetNumber;
result.active = true;
result.discarded = false;
}
if (index === 0 && canFumble && result.result >= minimumFumbleResult) result.failure = true;
return result;