diff --git a/mod.ts b/mod.ts index 1ac54b2..701469c 100644 --- a/mod.ts +++ b/mod.ts @@ -110,7 +110,7 @@ startBot({ return; } - log(LT.LOG, `Handling [[command message: ${JSON.stringify(message)}`); + log(LT.LOG, `Handling ${config.prefix}command message: ${JSON.stringify(message)}`); // Split into standard command + args format const args = message.content.slice(config.prefix.length).trim().split(/[ \n]+/g); diff --git a/src/constantCmds.ts b/src/constantCmds.ts index e10e33e..b9c0f87 100644 --- a/src/constantCmds.ts +++ b/src/constantCmds.ts @@ -246,9 +246,17 @@ export const constantCmds = { value: "Keeps the lowest `z` dice, cannot be used with `dz`", inline: true }, { - name: "`ra` [Optional]", + name: "`ra` or `r=q` [Optional]", value: "Rerolls any rolls that match `a`, `r3` will reroll any dice that land on 3, throwing out old rolls", inline: true + }, { + name: "`rq` [Optional]", + value: "Rerolls any rolls that are greater than or equal to `a`, `r3` will reroll any dice that land on 3 or greater, throwing out old rolls", + inline: true }, { name: "`csq` or `cs=q` [Optional]", value: "Changes crit score to `q`",