From e3dc7bc8b4b2d89368deda1e5534f9e3b5972f22 Mon Sep 17 00:00:00 2001 From: Ean Milligan Date: Sun, 27 Apr 2025 17:02:32 -0400 Subject: [PATCH] add docs for -min --- README.md | 5 +++-- src/commands/rollDecorators.ts | 14 ++++++++++---- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 6043273..f2b9bf8 100644 --- a/README.md +++ b/README.md @@ -126,8 +126,9 @@ The Artificer comes with a few supplemental commands to the main rolling command * `-nd` - No Details - Suppresses all details of the requested roll * `-snd` - Super No Details - Suppresses all details of the requested roll and hides no details message * `-s` - Spoiler - Spoilers all details of the requested roll - * `-m` - Maximize Roll - Rolls the theoretical maximum roll, cannot be used with -n - * `-n` - Nominal Roll - Rolls the theoretical nominal roll, cannot be used with -m + * `-m` or `-max` - Maximize Roll - Rolls the theoretical maximum roll, cannot be used with `-n` or `-min` + * `-min` - Minimize Roll - Rolls the theoretical minimum roll, cannot be used with `-m`, `-max`, or `-n` + * `-n` - Nominal Roll - Rolls the theoretical nominal roll, cannot be used with `-m`, `-max`, or `-min` * `-gm @user1 @user2 ... @userN` - GM Roll - Rolls the requested roll in GM mode, suppressing all publicly shown results and details and sending the results directly to the specified GMs * `-o a` or `-o d` - Order Roll - Rolls the requested roll and orders the results in the requested direction * The results have some formatting applied on them to provide details on what happened during this roll. diff --git a/src/commands/rollDecorators.ts b/src/commands/rollDecorators.ts index d7e96b9..5512e69 100644 --- a/src/commands/rollDecorators.ts +++ b/src/commands/rollDecorators.ts @@ -38,18 +38,24 @@ Examples: \`${config.prefix}d20${config.postfix} -nd\`, \`${config.prefix}d20${c inline: true, }, { - name: '`-m` - Maximize Roll', - value: 'Rolls the theoretical maximum roll, cannot be used with -n', + name: '`-m` or `-max` - Maximize Roll', + value: 'Rolls the theoretical maximum roll, cannot be used with `-n` or `-min`', + inline: true, + }, + { + name: '`-min` - Minimize Roll', + value: 'Rolls the theoretical minimum roll, cannot be used with `-m`, `-max`, or `-n`', inline: true, }, { name: '`-n` - Nominal Roll', - value: 'Rolls the theoretical nominal roll, cannot be used with -m', + value: 'Rolls the theoretical nominal roll, cannot be used with `-m`, `-max`, or `-min`', inline: true, }, { name: '`-gm @user1 @user2 @userN` - GM Roll', - value: 'Rolls the requested roll in GM mode, suppressing all publicly shown results and details and sending the results directly to the specified GMs', + value: + 'Rolls the requested roll in GM mode, suppressing all publicly shown results and details and sending the results directly to the specified GMs', inline: true, }, {