From 001dbb79cf3269b8b1980cbc75fa559559bffbea Mon Sep 17 00:00:00 2001 From: Server Dingo <85594556+serverdingo@users.noreply.github.com> Date: Mon, 6 Oct 2025 19:15:33 -0400 Subject: [PATCH] Fixed wording in "Modifiers with compare points" example The wording in one of the examples under "Modifiers with compare points" was incorrect. It stated that `2d6>3!<4` would explode rolls greater than 4, when this notation actually will only explode rolls less than 4. Fixed this by just updating "greater than 4" to "less than 4" --- docs/guide/notation/modifiers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/notation/modifiers.md b/docs/guide/notation/modifiers.md index 2b5d0155..04b72bcc 100644 --- a/docs/guide/notation/modifiers.md +++ b/docs/guide/notation/modifiers.md @@ -452,7 +452,7 @@ You can work around this by specifying the Target compare point first: ```javascript 2d6>3! // explode on a roll of 6, greater than 3 is a success -2d6>3!<4 // explode on any roll greater than 4, greater than 3 is a success +2d6>3!<4 // explode on any roll less than 4, greater than 3 is a success ``` :::