From c9c2fb801dbe616225d19436b798b0d3fc8f23e9 Mon Sep 17 00:00:00 2001 From: LeFrique Date: Sun, 24 Mar 2024 16:06:31 +0100 Subject: [PATCH] Update M5Roll.ts --- source/module/rolls/M5Roll.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/module/rolls/M5Roll.ts b/source/module/rolls/M5Roll.ts index f14fa6a..7c0d219 100644 --- a/source/module/rolls/M5Roll.ts +++ b/source/module/rolls/M5Roll.ts @@ -56,7 +56,7 @@ export class M5Roll { //if (rollResult.type === "ew") { if (d.total === 1) rowRes = M5EwResult.FUMBLE; else if (d.total === 20) rowRes = M5EwResult.CRITICAL; - else if (d.total === 16, 17, 18, 19) rowRes = M5EwResult.HIGH; + else if (d.total >= 16) rowRes = M5EwResult.HIGH; } else if (d.faces === 100) { face100 = d.total as number; }